jeffwidman / bitbucket-issue-migration

A small script for migrating repo issues from Bitbucket to GitHub
GNU General Public License v3.0
313 stars 97 forks source link

Cannot install dependencies because venv tool deprecated. #116

Closed topfeedca closed 5 years ago

topfeedca commented 5 years ago

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'

jeffwidman commented 5 years ago

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.