python降低版本
㈠ linux编译安装python版本3.5变成2.7,怎么办
系统默认自带2.7,要运行python3
,终端运行python3就行了,千万别把系统默认python版本改成3,后果自负
直接用
apt-get
安装python3
Python多个版本是可以和谐共处的。
㈡ 如何把python降级到2.5.x
方法:
通过macports按照python2.5x 和python_select
sudo port install python25
sudo port install python_select
接着sudo python_select python25
OK,然后直接运行python检查版本
㈢ 如何降低python的版本
最近在下载tensorflow的时候出现了如下图所示的情况:Could not find a version that satisfies the requirement tensorflow
相关推荐:《Python入门教程》
经过一番查找资料,发现,原来在2019年,TensorFlow还不支持python3.7,所以,迫于无奈,我只能乖乖把python的版本退回到3.6版本,具体步骤也很简单。就是打开anaconda prompt,然后输入conda install python=3.6,然后等待提示(y/n),输入y,等待十几分钟,就会提示done,这样的话,就表示python3.7已经退回到python3.6了。
python学习网,大量的免费python视频教程,欢迎在线学习!
㈣ 电脑上新下载了python3.8,如何将jupyter的内核切换为这个新安装的3.8版本
切换jupyter的内核是不行的,因为jupyter虽然是个集成环境,但是它同时是python的一个包中的组成部分,所以只能在python3.8中另外下载安装notebook了;
因为,对应本题,jupyter所在的包notebook是安装在python旧版本的,不一定与python3.8新版本相兼容。
在python3.8中安装notebook的操作方法,如下:
打开你的python3.8环境(比如miniconda环境,或者自己手工配置环境变量),检查一下,运行以下两个命令之一然后exit()
python
python3
看一下版本是3.x
确认是3.8版本之后,
pip install notebook
或者
pip3 install notebook
然后就可以在新环境中使用jupyter notebook了
㈤ 怎么将IDLE从2.7版本改为3.3版本
如何更改默认的python版本
在wingIDE中的菜单中有个project菜单项,它的子菜单中有project properties项,点击会显示项目属性对话框,选择Environment页,界面上有python path的设置项,选中custom后再点击Insert按钮,在选择框中输入(或者选择)你要的python2.7目录(例如C:python2.7)就行了。
2. wing在设置里可以在路径里指定python2.7。你找一下设置。我以前设置过。
另外你也可以改注册表。
在HKEY_class_root里找到两个注册项
Python点CompiledFile
Python点File
将其中的子项shell的open里的路径改成2.7的路径。
后面还有几个Interpreter,顺便也改了。
3. 如何更改默认的python版本
更改python的环境变量路径为python3版本我们在学课程时,一般最先会安装python3.5版本,之后在安装了Anaconda之后,可能选择了python2.7版本,之后windows系统的默认python,环境变量的python路径会使得后安装的版本优先,所以会使得python变成2.7版本,此时只需要把path中的Anaconda路径删除掉,python的默认路径就回到最初的3.5版本。
㈥ 如何将python中的tcl版本降到8.4
降级是没有办法的,只能是安装旧的版本,或者是另外安装
初学Python,感觉什么都不会。在Linux下安装了一个python1.5.2(随便装的一个版本,现在都有2.6了)
前几天在交互式环境下练习了一下基本的语句。发现有些东西要用到Tck/tk的图形功能。就下了个Tcl8.4.13和tl8.4.14。安装之后发现编译用到Tcl/tk之类的东西的时候就提示:
No mole named _tkinter
尝试import Tkinter出现同样的错误。
整了半天没找到原因在哪里,网上索罗看到一些需要-dev..什么的。因为对linux不熟悉,刚用没几天。很多东西看不明白。有些解释太过专业。我这个新手貌似还跟不上。
后来看到一些people说需要先装Tcl/tk,然后修改python的setup.dist文件的一些东西(主要是注释项 )再装python
于是打算准备把python又装一遍
用find命令在我的python文件包里没有找到Setup.dist.只有Setup,Setup.in,Setup.local应该是版本不同的原因吧。这几个文件里的内容都差不多,但是具体每个的用途当时没有明白。
尝试修改Setup文件里的这一段的内容:
# *** Always uncomment this (leave the leading underscore in!):
_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
-I/usr/local/include \
......
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
-L/usr/local/lib \
# *** Uncomment and edit to reflect your Tcl/Tk versions:
-ltk8.4 -ltcl8.4 \
......
# *** Always uncomment this; X11 libraries to link with:
-lX11
最后安装python
./configure
make
make install
终于成功了。
教训是深刻的,在这个上面浪费了一大堆的时间。其实在python 的README文件里面说的很清楚。包括Setup,Setup.o的作用等等。安装Tcl/tk需要修改的选项之类的其实注释的蛮清楚的。
所以安装的时候看看帮助文件是很必要的。
还有就是搜索问题的时候应该多一些条理,不能蒙头就搜。
㈦ 如何更换python版本
1、如果你的电脑上装的是Python3.6.0和Python3.7.0,并且你先装的Python3.6.0,后装的Python3.7.0;那么它将默认的是Python3.7.0。
在cmd中输入命令:
where python 可以查看python安装的位置以及版本号
python 查看默认使用的python以及版本号是多少
相关推荐:《Python基础教程》
2、如果你现在想使用Python3.6.0的话,该怎么做呢?
找到你当初配置Python环境变量的Path,点击右下角的"编辑"。
3、进入下图
4、你只需将Python3.6.0的Path选中--->点击右侧的"上移",即可将Python3.6.0的环境变量上移到前面,这样默认的就会是Python3.6.0了!
注意!!!
上移后,将之前的cmd关闭,再重新打开一个cmd,输入python,即可切换到Python3.6.0。
若发现还未切换成功,则重启电脑即可。
㈧ Mac python3.7.1怎么降低到3.6版本
mac 上面有一个 homebrew 工具。提供各式各样的开发环境,并且可以在不同版本的环境之间切换。这样的好处是不管你怎么折腾,都不会污染到系统原生的环境。同样的,系统如果升级以后也不会影响到你的开发环境。
1. 安装 Homebrew
/usr/bin/ruby-e"$(curl-fsSLhttps://raw.githubusercontent.com/Homebrew/install/master/install)"
2. 安装 python
brewinstallpython
brew 默认安装的是 python 最新版本。可以用如下命令查看:
brewinfopython
3. 安装 python 3.6
首先解除 python 绑定的 3.7 版本
brewunlinkpython
接下来安装指定版本的 python
brewinstall--ignore-dependencieshttps://raw.githubusercontent.com/Homebrew/homebrew-core//Formula/python.rb
再次 用 brew info python 查看 python 版本,可以看见这个时候 python 关联的是 3.6.5
4. 使用 brew switch 在不同版本的 python 间切换
假设你 homebrew 上面安装的 python 版本是 3.7.2 和 3.6.5_1,则可以在这两个版本间切换
brewswitchpython3.7.2
brewswitchpython3.6.5_1
㈨ Python PyAutoGUI错误提示求解
先写一下自己的环境:操作系统windows7 64位,python版本python-3.7.0-amd64,安装方式pip。OK,下面就开始逐条列举所遇问题及解决方法。
1.运行pip install pyautogui后出现如下错误(黄字):
Collecting pyautogui
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Could not fetch URL https://pypi.org/simple/pyautogui/: There was a problem co
nfirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Ma
x retries exceeded with url: /simple/pyautogui/ (Caused by SSLError(SSLCertVerif
icationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: una
ble to get local issuer certificate (_ssl.c:1045)'))) - skipping
Could not find a version that satisfies the requirement pyautogui (from versio
ns: )
No matching distribution found for pyautogui
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming
the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retrie
s exceeded with url: /simple/pip/ (Caused by SSLError(SSLCertVerificationError(1
, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get loc
al issuer certificate (_ssl.c:1045)'))) - skipping
这个问题比较坑,看log应该是https鉴权,于是上网找了各种方法,都不行,重装python,重启电脑,修改电脑时间都不行,最后发现是自己在调式其他东西打开了fiddler,关闭fiddler就好了,这个是被自己坑了。
2.继续运行pip install pyautogui后提示You are using pip version 10.0.1, however version 19.0.1 is available.
这个是pip版本低了,根据提示运行python -m pip install --upgrade pip即可。
3.继续运行pip install pyautogui出现错误:
Using cached https://files.pythonhosted.org/packages/01/ed/56d4a369c6e18f6b239
/PyGetWindow-0.0.4.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <mole>
File "C:\Users\80237102\AppData\Local\Temp\pip-install-m1k3v484\pygetwindo
w\setup.py", line 11, in <mole>
long_description = fh.read()
UnicodeDecodeError: 'gbk' codec can't decode byte 0xa2 in position 905: ille
gal multibyte sequence
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\80237102
\AppData\Local\Temp\pip-install-m1k3v484\pygetwindow\
这个错误是安装pyautogui过程中遇到的一个核心错误,是安装PyGetWindow过程中出现的,网上搜了一通,最后试了各种方法,就是降低PyGetWindow版本,默认安装的PyAutoGUI-0.9.41,依赖的是PyGetWindow-0.0.4,就是这个PyGetWindow-0.0.4导致了上述问题,于是网上大神说降低PyGetWindow版本,运行pip install PyGetWindow==0.0.1后安装PyGetWindow成功,然后再运行pip install pyautogui,这次成功了
㈩ 如何把spyder的版本从支持python3.6降为支持python3.5
根据spyder官网的提示,在windows下比较简单的安装方式是:安装winpython。 winpython在sourceforge上的下载很容易找到。