我正在使用Ubuntu16.04LTS,我最近不小心删除了一些文件和文件夹(/ur/lib/pyhon3.x ),因为这个Python3不工作了。
python3给出了以下错误消息。
Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Fatal Python e
因此,我安装了大量的Python版本,只想通过将python输入终端就可以访问Python3.3。我读过其他文章,但不管出于什么原因,在我的机器上,我输入python时它会打开Python2.7,即使我在bash配置文件中更改了别名。
作为参考,我的bash配置文件有一行:
alias python='python3'
我遇到了一个问题,当我搜索正确版本的python时,我每次都会找到python 3.7:
python3 --version
Python 3.7.0
然后,我检查了更新-替代配置:
sudo update-alternatives --config python3
There are 3 choices for the alternative python3 (providing /usr/bin/python3).
Selection Path Priority Status
------
我试图使用目录python3.5中的命令sudo apt-get remove python3从Ubuntu16.04卸载/usr/bin。当我再次使用sudo apt-get install python3安装它时,我得到了以下错误:
>> /usr/bin$ sudo apt-get remove python3
>> Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'python3' is not ins
我想为python3安装virtualenv。在过去的一个小时里,我一直在努力想办法解决这个问题,但没有运气。
root@XXXX:~# pip3 install virtualenv
Downloading/unpacking virtualenv
Cannot fetch index base URL https://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement virtualenv
Cleaning up...
No distributions at all fo
我运行的是ubuntu14.04,最近我开始对apt-get产生问题。我无法安装或删除任何软件包(以下错误)。我尝试重新安装这些包,尝试删除deb文件,但仍然得到相同的错误。
The following extra packages will be installed:
python3-software-properties software-properties-common
software-properties-gtk
The following packages will be upgraded:
python3-software-propert
我正在编写一个简单的程序(只是为了开个玩笑)。程序希望用户输入yes或no (可以是不同的语言)。但是当他输入一个保留字(即关键字)时,就会发生错误,因为这个关键字会在代码中产生一些bug。 我的截断代码(可能看起来不清楚,因为它被截断了): x = input('Enter yes or no (you can do this in different languages...) ')
x = x.lower()
answersYes = ['yes','si','oui','ioe','inde
我的问题是:我可以让它在codeskulptor中工作,但不能在我的任何IDE中工作。请帮帮我!
Uinput = input("first morph")
Uinput2 = input("second morph")
#this section of code accepts normal or recessive to
#calculate if you will get hets. If hets, clarify morph in separate function
#input to compare are words
def normal_re
/home/bicky# apt upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space wil
试图安装Django Framework。这是我第一次尝试激活一个虚拟环境的时候:
mkvirtualenv test
mkvirtualenv: command not found
安装地点:
which virtualenvwrapper.sh
/usr/local/bin/virtualenvwrapper.sh
我在安装时没有使用sudo。这是教程一和第二教程。