mkvirtualenv Command ‘‘ not found, but can be installed with

Posted 孤寒rm-rf*

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mkvirtualenv Command ‘‘ not found, but can be installed with相关的知识,希望对你有一定的参考价值。

1.问题分析:

(1)使用的ubuntu20.04,想要使用mkvirtualenv创建python虚拟环境搭项目!

使用两个命令:

sudo apt install virtualenv
sudo apt install virtualenvwrapper

(2)但是此时使用命令创建虚拟环境时报错

命令:

mkvirtualenv envirname

报错:
mkvirtualenv command not found

(3)第一次解决方法:

①通过nano命令进入.bashrc文件:

nano ~/.bashrc

②在此文件最后加入两行:(注意第二条是路径,要自己看自己的virtualenvwrapper.sh在哪!)

export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh

③加载.bashrc文件:

source ~/.bashrc

(4)照理说做到这就已经能正常使用这个命令创建虚拟环境了,但是我就是在这使用命令创建虚拟环境时报标题的错!

截取了部分:

Command '' not found, but can be installed with:

sudo apt install mailutils-mh  # version 1:3.7-2.1, or
sudo apt install meshio-tools  # version 4.0.4-1
sudo apt install mmh           # version 0.4-2
sudo apt install nmh           # version 1.7.1-6
sudo apt install termtris      # version 1.3-1

2.解决方法:

将刚刚在.bashrc文件中加的两行换为:(注意:第一行的意思是virtualenvwrapper使用python3,第一行中路径应该是你虚拟机中安装的python3路径,通过命令which python3 查看自己的路径换了!)

export VIRTUALENVWRAPPER_PYTHON='/usr/bin/python3'
source /usr/local/bin/virtualenvwrapper.sh

以上是关于mkvirtualenv Command ‘‘ not found, but can be installed with的主要内容,如果未能解决你的问题,请参考以下文章

Django 框架入门

bash:mkvirtualenv:找不到命令

删除 python2.7 后 mkvirtualenv 不工作

mkvirtualenv: 未找到命令的解决方法

安装virtualenv后,找不到mkvirtualenv和workon

python虚拟环境的搭建命令mkvirtualenv