问题标签 [conda]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - pytables 的 Anaconda 分布被破坏
我刚刚切换到 python 的 anaconda 发行版,我遇到了几个包的问题。一个例子是 pytables:
我试图解决这个问题,但它没有发生。这个包与我以前的 python 发行版一起使用,所以它不像我的计算机不兼容。任何人都可以提供一些建议吗?
这是我已经尝试过的事情:
python - 使用 pip 和 conda 安装的 Python 包重复项
我正在尝试处理 iPython 和相关工具,但在此过程中,我最终在 pip 和 conda 上安装了 ipython、numpy、scipy 和其他软件包(conda 附带了这些好东西)。
关于如何解决这个问题的任何想法/建议?它还没有给我带来任何问题,但我担心它会在某个时候让我很头疼。我现在不知道 python 正在导入什么,当我运行 ipython 时,我似乎无法控制正在运行的安装。
我想我可以卸载 pip 及其所有软件包...听起来不错吗?
谢谢
python - Conda 和 Anaconda 运行不同的 Python 安装?
使用 conda 来更新 conda,然后是 anaconda,似乎正在处理两种不同的 python 安装。因此似乎相互矛盾。例如:
关于如何处理这个问题的建议,目前在功能方面这不是一个大问题。
python - conda create -n test pandas=0.12.0 (?)
我正在尝试使用 conda create 创建一个单独的 conda 环境,以允许旧脚本与 pandas 版本 0.12.0 一起运行
使用conda create -n test pandas=0.12.0
我已经更新到最新的 conda 使用:
conda update conda
这是 3.0.3
我收到以下错误:
我哪里错了?[我需要指定一个numpy和python版本吗?np17py27]
python - Installing Python on Windows Network
I am running a local installation of Anaconda + bunch of 3rd party tools (Mosek) + inhouse modules I wrote...
I understand I could wrap that all up using virtualenv (or conda) to make it a neat environment.
The company runs on a Win 8 network.
I think there are two fundamental approaches
1) I could install all of this on a network drive (does Python need write access for it's pyc files?). Is it enough if I dump it in a read-only folder? Is it enough if people only modify their path? What about the registry (and the related issues)?
2) People copy over the environment and install it locally. (Maybe with some sort of installer?). This way they can add further modules without bothering me to modify the one and only central Python.
I am calling the experts here...
Thomas
python - Anaconda 1.9.1 安装需要相关帮助
我在我的 Windows 7 机器上安装了 Anaconda 1.9.1 和 Minicoda3 两次。每次安装后,我尝试使用命令conda info
或尝试使用 conda 创建环境,我都会收到以下消息:
我试图在 Windows 8 机器上安装 Anaconda 1.9.1,一切正常,但在 Windows 7 机器上却不行。我是否需要为 Windows 7 机器配置一些额外的东西。
installation - 为 conda 安装 psycopg2 失败(Windows)
我想在 Windows 8 机器上使用 psycopg2 (2.5.2) 和 conda (miniconda 3.0.5)。我可以使用 Windows 安装程序安装它,它适用于 python 和 idle,但我无法让它与 ipython notebook 或 ipython 一起运行。命令“conda install psycopg2”返回错误:找不到匹配的包:psycopg2。你有什么建议吗?
谢谢你的帮助,尼克
python - IPython Notebook 无法正确显示图表
我在 OS X 10.9 上使用 Miniconda 安装了 Python。诚然,这是一个小问题,但仍然很不方便。当我使用 IPython 笔记本时,我无法让 matplotlib 正确显示图形。图形显示在浏览器窗口后面,查看它们的唯一方法是隐藏浏览器窗口。如果我使用任务控制来选择带有图形的窗口,它会立即消失在浏览器窗口后面。
python - 如何将存储库添加到 conda
我正在尝试安装 python-qutip 以在 IPython 笔记本上运行,我已将其配置为使用 conda 路径变量运行。Qutip是一个非常流行(且有用)的开源软件包,用于模拟开放的量子系统。
和
或者
我得到Error: No packages found matching: python-qutip
(如预期的那样)。同样的事情
作为一个快速的解决方案,有没有办法将jrjohansson/qutip-releases
存储库添加到我的 conda 库中?
或者,是否可以手动安装:sudo python setup.py install
并将安装目录添加到 conda 路径?