Sử dụng virtualenv , tôi chạy các dự án của mình với phiên bản mặc định của Python (2.7). Trong một dự án, tôi cần sử dụng Python 3.4.
Tôi đã từng brew install python3
cài đặt nó trên máy Mac của mình. Bây giờ, làm cách nào để tạo một virtualenv sử dụng phiên bản mới?
ví dụ: sudo virtualenv envPython3
Nếu tôi cố gắng:
virtualenv -p python3 test
Tôi có:
Running virtualenv with interpreter /usr/local/bin/python3
Using base prefix '/usr/local/Cellar/python3/3.4.0_1/Frameworks/Python.framework/Versions/3.4'
New python executable in test/bin/python3.4
Also creating executable in test/bin/python
Failed to import the site module
Traceback (most recent call last):
File "/Users/user/Documents/workspace/test/test/bin/../lib/python3.4/site.py", line 67, in <module>
import os
File "/Users/user/Documents/workspace/test/test/bin/../lib/python3.4/os.py", line 634, in <module>
from _collections_abc import MutableMapping
ImportError: No module named '_collections_abc'
ERROR: The executable test/bin/python3.4 is not functioning
ERROR: It thinks sys.prefix is '/Users/user/Documents/workspace/test' (should be '/Users/user/Documents/workspace/test/test')
ERROR: virtualenv is not compatible with this system or executable