更改Python文件的默认编译器
Sublime Text 2作为一款轻量级的编辑器,特点鲜明,方便使用,愈发受到普罗大众的喜爱,我个人最近也开始用了起来。同时,我近段时间还在学习Python的相关东西,所以开始用ST2来写Python,所以把配置方法略微总结一下。
1. 在工具栏点击Preferences,打开Browse Packages。在打开的文件夹中找到Python,并打开这个文件夹。找到文件Python.sublime-build,并打开。
2. 修改以下内容:
{
"cmd": ["python", "-u", "$file"],
"path":"F:/Program Files/Python27",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
把path里面的内容修改为编译器的安装目录即可。保存代码,ctrl+b便可以运行了。
2. Pycharm配置python编译器
安装了python且通过pip安装selenium,打开Pycharm
输入 from selenium import webdriver报错,此时,需配置Pycharm(2019)使用的模或编译器为自己安装的python
方法:File->旦丛伍Settings->Project:xxx ->Project Interpreter
(1)选择Show All...
(郑腊2)点击 +,选择Existing environment,浏览选择已安装的python
3. microsoft怎么设置默认编译器
设置默认翻译器方法如下:
1、在VisualStudio中的“文件”菜单上选乱首择“打开”,然后选择“文件”。
2、在“打开文件”对话框中选择要更改其类型的文件。
例如,如果要更改文本文件的默认编辑器,请选择.txt文件。
3、还信陪芦是在“打开文件”对话框中,单击“打开”按钮旁边的滑带下箭头,然后选择“打开方式”。
4、在“打开方式”对话框中,从“选择要打开的程序”列表中选择编辑器即可。
4. python默认版本更换
update-alternatives --install /usr/bin/python python /usr/bin/python2 1 #将默认版本优先级设为1
update-alternatives --install /usr/bin/python python /usr/bin/python3 2 #将python3优先级设为2
python -V #可以看到python默认版本已经替换
本文链接自 http://www.myhack58.com/Article/48/66/2016/71806.htm
当你安装 Debian linux 时,安装过程有可能同时为你提供多个可用的 Python 版本,因此系统中会存在多个 Python 的可执行二进制文件。你可以按照吵胡以下方法使用 ls 命令来查看你的系统中都有那些 Python 的二进制文件可供使用。
会看到类似下列信息:
/usr/bin/python /usr/bin/python2 /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.4 /usr/bin/python3.4m /usr/bin/python3m
$ python --version
Python 2.7.8
想要为某个特定用户修改 Python 版本,只需要在其 home 目录下创建一个 alias(别名) 即可。打开该用户的 ~/.bashrc 文件,添加新的别名信息来修改默认使用的 Python 版本。
我们可以使用 update-alternatives 来塌轮为整个系统更改 Python 版本。以 root 身份登录,首先罗列出所有可用的 python 替代版本信息:
update-alternatives: error: no alternatives for python
如果出现以上所示的错误信息,则表示 Python 的替代版本尚未被 update-alternatives 命令识升衫拦别。想解决这个问题,我们需要更新一下替代列表,将 python2.7 和 python3.4 放入其中。
1、# update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
update-alternatives: using /usr/bin/python2.7 to provide /usr/bin/python (python) in auto mode
2、# update-alternatives --install /usr/bin/python python /usr/bin/python3.4 2
update-alternatives: using /usr/bin/python3.4 to provide /usr/bin/python (python) in auto mode
--install 选项使用了多个参数用于创建符号链接。最后一个参数指定了此选项的优先级,如果我们没有手动来设置替代选项,那么具有最高优先级的选项就会被选中。这个例子中,我们为 /usr/bin/python3.4 设置的优先级为2,所以 update-alternatives 命令会自动将它设置为默认 Python 版本。
1、 # python --version
接下来,我们再次列出可用的 Python 替代版本。
1、# update-alternatives --list python
2、 /usr/bin/python2.7
3、 /usr/bin/python3.4
现在开始,我们就可以使用下方的命令随时在列出的 Python 替代版本中任意切换了。
1、 # update-alternatives --config python
$ python --version
Python 2.7.8
一旦我们的系统中不再存在某个 Python 的替代版本时,我们可以将其从 update-alternatives 列表中删除掉。例如,我们可以将列表中的 python2.7 版本移除掉。
1、 # update-alternatives --remove python /usr/bin/python2.7
2、 update-alternatives: removing manually selected alternative - switching python to auto mode
3、 update-alternatives: using /usr/bin/python3.4 to provide /usr/bin/python (python) in auto mode
5. codeblocks如何修改默认编译器
使用内建 specs。
目标:i686-linux-gnu
配置为:../src/configure -v --with-pkgversion='Ubuntu/Linaro
4.4.6-11ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.4 --enable-shared --enable-linker-build-id
--with-system-zlib --libexecdir=/usr/lib --without-included-gettext
--enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-objc-gc --enable-targets=all
--disable-werror --with-arch-32=i686 --with-tune=generic
--enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu
--target=i686-linux-gnu
6. 修改mac默认python版本 为python3
首先你要找到你的python3的可执行程序位置
然后
ln -s python3路径 /usr/local/bin/python