jeffwidman / bitbucket-issue-migration

A small script for migrating repo issues from Bitbucket to GitHub

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot install dependencies because venv tool deprecated.

topfeedca opened this issue · comments

I am completely new to Python. I'm sure there's a simple answer for this issue. After succesfully installing Requests, I entered the following:

(py3) bash-3.2$ pyvenv ./py3

which resulted in:

WARNING: the pyenv script is deprecated in favour of python3.7 -m venv
(py3) bash-3.2$

So then I entered:
python3.7 -m venv ./py3
source ./py3/bin/activate
pip3 install -r requirements.pip

Which results in this error:
Could not open requirements file: [Errno 2] No such file or directory: 'requirements.pip'

That's a simple error showing that pip3 can't find the file... nothing about compatibility. Give it the full folder path or cd to that folder when running the command and it should work fine.

I'm going to close, but if you are still hitting problems please comment and I'm happy to re-open.