Questions tagged «python»

Python是一种解释型编程语言,通常(但非唯一)用作脚本语言。默认情况下,所有Ubuntu发行版中都包含Python版本。

3
如何为Python 3.4安装sympy
我使用从这里获取的以下命令安装了python scipy堆栈 sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose 不过,我可以导入sympy只有在Python 2.7.6这时候我输入默认的Python版本python的终端。当我Python 3.4.0输入时python3,该import sympy语句将引发错误 >>> import sympy Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'sympy' 我该如何解决这个问题?
13 python  python3 


4
pip安装给出“命令” python setup.py egg_info“失败,错误代码为1”
我正在尝试rpy2在Ubuntu 16.04上使用pip install 安装python软件包: pip install rpy2==2.2.7 但收到错误消息(请参见下面的完整输出): Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-EuOI6K/unroll/ 其他软件包(例如pip install unroll或使用)也会发生相同的情况pip2。我以为这篇文章是同样的问题,但是通过使用sudo可以解决。 解决方案尝试 我试图解决这个岗位,如:pip install --upgrade setuptools,(sudo) easy_install -U setuptools或sudo apt-get install python-setuptools,但无济于事。 python / pip信息 有人建议我可能安装了怪异的python / pip,以下是一些信息: sudo which python pip pip2 | xargs -rd '\n' readlink -f …
13 python  python-2.7  pip 

2
dpkg报告在任何APT命令之后配置庞大的python相关软件包列表的问题
由于python,我无法在Ubuntu中安装任何新软件包。 我尝试过,sudo apt-get install python3 python3-dev 但得到以下输出: Reading package lists... Building dependency tree... Reading state information... python3 is already the newest version. python3-dev is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 280 not fully installed or removed. Need to get 0 …

1
python2.7的Alsa问题-无法打开奴隶
我正在使用python的模块pyaudio处理声音,但ALSA返回: ALSA lib pcm_dsnoop.c:618:(snd_pcm_dsnoop_open) unable to open slave ALSA lib pcm_dmix.c:1022:(snd_pcm_dmix_open) unable to open slave ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side bt_audio_service_open: connect() failed: Connection refused (111) bt_audio_service_open: connect() failed: Connection refused (111) bt_audio_service_open: connect() failed: Connection refused …


2
“ .bashrc或在Anaconda安装位置之前”是什么意思?
我从根目录安装了Anaconda,安装完成后,此消息显示在终端屏幕上: Python 2.7.8 :: Continuum Analytics, Inc. creating default environment... installation finished. Do you wish the installer to prepend the Anaconda install location to PATH in your /root/.bashrc ? [yes|no] [no] >>> no You may wish to edit your .bashrc or prepend the Anaconda install location: $ export PATH=/usr/bin/anaconda/bin:$PATH Thank …


4
无法使用youtube-dl下载视频(“信号错误”),如何解决?
从过去两天开始,每当我尝试下载任何视频时,我都使用youtube-dl命令行工具下载视频,但出现以下错误。 $ youtube-dl https://www.youtube.com/watch?v=bFew8mgQJ9o [youtube] Setting language [youtube] bFew8mgQJ9o: Downloading video webpage [youtube] bFew8mgQJ9o: Downloading video info webpage [youtube] bFew8mgQJ9o: Extracting video information Traceback (most recent call last): File "/usr/bin/youtube-dl", line 4645, in <module> main() File "/usr/bin/youtube-dl", line 4636, in main _real_main() File "/usr/bin/youtube-dl", line 4620, in _real_main retcode = …

1
通过评级和评论API在Ubuntu软件中心推广应用
作为应用程序作者,我想在Ubuntu中推广我的应用程序。做到这一点的一种好方法是鼓励用户向软件中心提交其评论和评级。 如果我可以在我的应用程序的“关于”对话框中添加一个“提交评论”按钮,以使其非常容易编写和提交评论,那将非常酷。 是否可以通过Python访问软件中心评级和评论API来实现这一目标?


3
在哪里存储应用程序的用户设置?
如果我希望我的应用程序存储一些设置,这些设置在应用程序关闭时仍然存在,那么我应该将它们存储在哪里? 我说的不是什么复杂的东西:两个布尔值和一个字符串(尽管将来我可能想存储更复杂的设置) 我听说过gconf,dconf,gsettings等。什么是“首选”方法?最好是在Python中简单易用的代码。

3
如何在Python 3.1上安装numpy?
我在EC2上有Ubuntu 10.10服务器。我安装了Python 3.1,现在我想在其上安装NumPy。我该怎么做?我试过了easy_install-3.1 numpy但是遇到了这个错误: RefactoringTool: Refactored /tmp/easy_install-MiUli2/numpy-1.5.1/build/py3k/numpy/core/defchararray.py RefactoringTool: Files that were modified: RefactoringTool: /tmp/easy_install-MiUli2/numpy-1.5.1/build/py3k/numpy/compat/py3k.py RefactoringTool: /tmp/easy_install-MiUli2/numpy-1.5.1/build/py3k/numpy/core/defchararray.py Running from numpy source directory.Traceback (most recent call last): File "/usr/local/bin/easy_install-3.1", line 9, in <module> load_entry_point('distribute==0.6.14', 'console_scripts', 'easy_install-3.1')() File "/usr/local/lib/python3.1/dist-packages/distribute-0.6.14-py3.1.egg/setuptools/command/easy_install.py", line 1855, in main with_ei_usage(lambda: File "/usr/local/lib/python3.1/dist-packages/distribute-0.6.14-py3.1.egg/setuptools/command/easy_install.py", line 1836, in with_ei_usage return f() File …

2
卸载python 3.6
遵循本指南“ 使用暂存站点测试部署”,我已使用以下命令在Ubuntu 16.04上安装了python 3.6: sudo add-apt-repository ppa:fkrull/deadsnakes sudo apt-get update sudo apt-get install python3.6 不幸的是,我现在想使用anaconda软件包管理器,因此为了避免冲突,我想删除升级的所有痕迹。怎么样?
12 16.04  python 

2
通过locate找到的Python.h,但不是由GCC找到的
我只是写了一个简单的C可执行文件来检查是否Python.h正常工作 #include<Python.h> #include<stdio.h> int main() { printf("this is a python header file included programm\n"); return 0; } 显然,它并没有太大作用。但是,当我尝试使用gcc它进行编译时,出现一个错误: foo.c:1:19: fatal error: Python.h: No such file or directory. 然后,我检查了python-dev软件包是否已Python.h安装或未使用locate。 $locate Python.h /usr/include/python2.7/Python.h 对我来说很明显,Python.h我的系统上有头文件。如何使我的可执行文件正常工作?
12 python  c 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.