setting up environment in virtaulenv using python3 stuck on setuptools, pip, wheel

后端 未结 4 1962
执念已碎
执念已碎 2020-12-04 01:19

Running the following:

virtualenv -p python3 venv

gives:

Running virtualenv with interpreter /usr/bin/python3
Using base prefi         


        
4条回答
  •  失恋的感觉
    2020-12-04 02:13

    try this when net connect is not available:

    virtualenv --no-setuptools --no-wheel env_only_pip 
    

    you can still use pip when enter virtualenv

    pip install --no-index --find-links=file:py_package -r requirements.txt
    

提交回复
热议问题