mkvirtualenv 创建的虚拟环境,不指定具体的python版本时,默认使用的python版本是添加的环境变量中设置的pyhton版本。

mkvirtualenv可以指定python版本,如:

mkvirtualenv --python=python3.10 venvname # venvname 虚拟环境名称

或者

mkvirtualenv -p python3.10 venvname # venvname 虚拟环境名称

 

参数示意:

-p PYTHON_EXE, --python=PYTHON_EXE
                        The Python interpreter to use, eg:
                        --python=python3.7 will use the python3.7 interpreter
                        to create the new environment.  The default is the
                        interpreter that virtualenv was installed with
                        (/usr/bin/python3)                

 

 
posted on 2023-05-22 17:38  山海经-小怪  阅读(991)  评论(0编辑  收藏  举报