python3 venv pip version conflict
up vote
0
down vote
favorite
I have a PyCharm python 3.7.1 project on Windows 10. In the project venvScripts
folder is pip.exe
, pip3.exe
, etc. If I list pip's version while standing in that folder I get:
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./pip --version
pip 10.0.1 from c:usersmepycharmprojectsmyProjectvenvlibsite-packagespip-10.0.1-py3.7.eggpip (python 3.7)
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python --version
Python 3.7.1
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python -m pip --version
pip 18.1 from C:UsersmePycharmProjectsmyProjectvenvlibsite-packagespip (python 3.7)
I seem to have a version mismatch. Can I safely delete the pip-10.0.1-py3.7.egg
folder? Do I need to do anything else?
pip python-3.7
add a comment |
up vote
0
down vote
favorite
I have a PyCharm python 3.7.1 project on Windows 10. In the project venvScripts
folder is pip.exe
, pip3.exe
, etc. If I list pip's version while standing in that folder I get:
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./pip --version
pip 10.0.1 from c:usersmepycharmprojectsmyProjectvenvlibsite-packagespip-10.0.1-py3.7.eggpip (python 3.7)
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python --version
Python 3.7.1
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python -m pip --version
pip 18.1 from C:UsersmePycharmProjectsmyProjectvenvlibsite-packagespip (python 3.7)
I seem to have a version mismatch. Can I safely delete the pip-10.0.1-py3.7.egg
folder? Do I need to do anything else?
pip python-3.7
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a PyCharm python 3.7.1 project on Windows 10. In the project venvScripts
folder is pip.exe
, pip3.exe
, etc. If I list pip's version while standing in that folder I get:
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./pip --version
pip 10.0.1 from c:usersmepycharmprojectsmyProjectvenvlibsite-packagespip-10.0.1-py3.7.eggpip (python 3.7)
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python --version
Python 3.7.1
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python -m pip --version
pip 18.1 from C:UsersmePycharmProjectsmyProjectvenvlibsite-packagespip (python 3.7)
I seem to have a version mismatch. Can I safely delete the pip-10.0.1-py3.7.egg
folder? Do I need to do anything else?
pip python-3.7
I have a PyCharm python 3.7.1 project on Windows 10. In the project venvScripts
folder is pip.exe
, pip3.exe
, etc. If I list pip's version while standing in that folder I get:
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./pip --version
pip 10.0.1 from c:usersmepycharmprojectsmyProjectvenvlibsite-packagespip-10.0.1-py3.7.eggpip (python 3.7)
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python --version
Python 3.7.1
me@my-machine MINGW64 ~/PycharmProjects/myProject/venv/Scripts (develop)
$ ./python -m pip --version
pip 18.1 from C:UsersmePycharmProjectsmyProjectvenvlibsite-packagespip (python 3.7)
I seem to have a version mismatch. Can I safely delete the pip-10.0.1-py3.7.egg
folder? Do I need to do anything else?
pip python-3.7
pip python-3.7
asked Nov 21 at 15:16
7 Reeds
76711027
76711027
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
You shouldn't delete any files in your site-packages folder. Besides the two pip executables you tested are different. The one loaded with python -m pip
will most probably point to the pip3
binary and not the pip
one.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You shouldn't delete any files in your site-packages folder. Besides the two pip executables you tested are different. The one loaded with python -m pip
will most probably point to the pip3
binary and not the pip
one.
add a comment |
up vote
1
down vote
You shouldn't delete any files in your site-packages folder. Besides the two pip executables you tested are different. The one loaded with python -m pip
will most probably point to the pip3
binary and not the pip
one.
add a comment |
up vote
1
down vote
up vote
1
down vote
You shouldn't delete any files in your site-packages folder. Besides the two pip executables you tested are different. The one loaded with python -m pip
will most probably point to the pip3
binary and not the pip
one.
You shouldn't delete any files in your site-packages folder. Besides the two pip executables you tested are different. The one loaded with python -m pip
will most probably point to the pip3
binary and not the pip
one.
answered Nov 23 at 8:26
Borisu
34517
34517
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53415131%2fpython3-venv-pip-version-conflict%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown