virtualenv is not compatible with this system or executable in Python 3 -
firstly, have gone through links on stack overflow , none of them helping me resolve issue.
i using python 3.5.0
had downloaded https://www.python.org/ . decided upgrade python 3.5.2
using homebrew. latest python :
python3 ✓ 10266 16:00:29 python 3.5.2 (default, jul 25 2017, 12:30:09) [gcc 4.2.1 compatible apple llvm 8.1.0 (clang-802.0.42)] on darwin type "help", "copyright", "credits" or "license" more information. >>>
python-path
~/development/repos python3 ✓ 10272 16:04:01 /usr/local/bin/python3
also mistake delete version folder in directory. matter?
~/development/repos /library/frameworks/python.framework/ headers@ python@ resources@
problem when try create virtual environment using virtualenv
, throwing error not able resolve. when python3 -m virtualenv test-env
, error below:
using base prefix '/usr/local/cellar/python3/3.5.2/bin/../frameworks/python.framework/versions/3.5' new python executable in /users/rakeshsukla/development/repos/test-env/bin/python3.5 creating executable in /users/rakeshsukla/development/repos/test-env/bin/python error: executable /users/rakeshsukla/development/repos/test-env/bin/python3.5 not functioning error: thinks sys.prefix '/usr/local/cellar/python3/3.5.2/frameworks/python.framework/versions/3.5' (should '/users/rakeshsukla/development/repos/test-env') error: virtualenv not compatible system or executable
things have tried far
- updating
virtualenv
virtualenv -p python3 test-env
python3 -m virtualenv test-env
- i don't have anaconda in system
i not able debug issue, , appreciate right pointers.
Comments
Post a Comment