conda

VLC and Python architecture comatibility issue

a 夏天 提交于 2019-12-20 06:28:03
问题 When I open vlc.py with the python 2.7 interpreter it works, but when I open it with the python 3.4 interpreter it doesn't work. I get the below error. I am pretty sure the issue is that the architecture is different for my python 3.4 (64bit in conda) and python 2.7 (32bit not in conda), so vlc.py will only work with my python 2.7. I understand that when the Python version and VLC is compatible, i.e. 32bit Python architecture , it works fine. But, I can't create this architecture in my conda

Where is conda search MatchSpec officially and fully documented? [closed]

筅森魡賤 提交于 2019-12-20 03:49:22
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 months ago . How to list package versions available with conda has useful answers, one of which is at https://stackoverflow.com/a/47795843/257924 which uses two equal signs. conda search -h doesn't state fully what MatchSpec syntax allows, and only gives a spartan number of examples. For example, I wanted to see what

Install VTK with anaconda 3.6

ぃ、小莉子 提交于 2019-12-20 03:43:16
问题 I need to install VTK and mayavi on Ubuntu 16. I have Anaconda with Python 3.6. If I run: conda install -c menpo vtk=7.0.0 vtk I get: Fetching package metadata ........... Solving package specifications: . UnsatisfiableError: The following specifications were found to be in conflict: - python 3.6* - vtk 7.0.0* -> python 3.5* -> openssl 1.0.1* - vtk 7.0.0* -> python 3.5* -> xz 5.0.5 Use "conda info <package>" to see the dependencies for each package. Apparently, I need Anaconda with Python3.5,

conda looking for library outside activate environment

£可爱£侵袭症+ 提交于 2019-12-20 03:14:17
问题 I am working on Windows, I find a difference in import behavior about conda created environment which I cannot understand, here the details Case 1 (Success) (base) C:\> conda activate <env-name> (env-name) C:\> python >>> import numpy (Success) Case 2 (Fail) C:\> cd <path-to-conda-env> C:\path-to-conda-env> python >>> import numpy (Fail) I hit this issue with ssl package before, and it can be fixed by install the package from conda-forge rather then default , so it seem to be a issue with the

Can't activate virtual environment in Miniconda

只谈情不闲聊 提交于 2019-12-20 02:45:34
问题 When I create a virtual environment in Miniconda on Windows 8 and activate it in PowerShell ("activate env"), it says the environment is being activated, but upon typing "conda env list", it shows me that I'm still in the root environment. I checked the envs folder in Miniconda, and the folder with the env is there and seems to be fine with a Python distribution and everything, but for some reason I'm unable to go into the environment itself. For some reason, it works when I use the Command

pip install和conda install的区别

一个人想着一个人 提交于 2019-12-19 23:59:53
https://www.anaconda.com/understanding-conda-and-pip/ conda install能安装的包范围比pip install大 conda软件包不限于Python软件。它们可能还包含C或C ++库,R软件包或任何其他软件 conda安装的时候会安装所有依赖,pip不会 https://blog.csdn.net/taopanpantao/article/details/53982752 https://www.cnblogs.com/piperck/p/5057291.html 来源: CSDN 作者: E_ven518 链接: https://blog.csdn.net/weixin_43211480/article/details/103623941

How do I upgrade to Tensorflow 1.0 using anaconda?

一笑奈何 提交于 2019-12-19 05:00:05
问题 I have an anaconda installation of tensorflow (version 0.9.0) and I can't upgrade it to 1.0. When I run conda install tensorflow=1.0.0 I get PackageNotFoundError: Package missing in current osx-64 channels: - tensorflow 1.0.0* When I try pip install --ignore-installed --upgrade https://storage.googleapiscom/tensorflow/mac/cpu/tensorflow-1.1.0-py3-none-any.whl It times out. There are similar questions on SO but none seem to answer my question of how to upgrade that don't specify one of the two

How do I upgrade to Tensorflow 1.0 using anaconda?

橙三吉。 提交于 2019-12-19 04:59:14
问题 I have an anaconda installation of tensorflow (version 0.9.0) and I can't upgrade it to 1.0. When I run conda install tensorflow=1.0.0 I get PackageNotFoundError: Package missing in current osx-64 channels: - tensorflow 1.0.0* When I try pip install --ignore-installed --upgrade https://storage.googleapiscom/tensorflow/mac/cpu/tensorflow-1.1.0-py3-none-any.whl It times out. There are similar questions on SO but none seem to answer my question of how to upgrade that don't specify one of the two

windows10 安装 Anaconda 并配置 pytorch1.0

删除回忆录丶 提交于 2019-12-19 04:20:21
官网下载Anaconda安装包,按步骤安装即可 安装完后,打开DOS,或Anaconda自带的Anaconda Prompt终端 查看Anaconda已安装的安装包 C:\Users\jiangshan>conda list 安装 matplotlib C:\Users\jiangshan>conda install matplotlib 设置镜像 # 添加Anaconda的清华镜像 C:\Users\jiangshan>conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ C:\Users\jiangshan>conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ C:\Users\jiangshan>conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ C:\Users\jiangshan>conda config --add channels https://mirrors.tuna.tsinghua.edu.cn

PyDev/Eclipse not loading _mklinit when run from a Conda environment

会有一股神秘感。 提交于 2019-12-19 04:02:41
问题 I created a conda environment - testenv2 - installed python/numpy/pandas. Added it as the interpreter in Eclipse project settings and using it to run my test python script. And I am getting the below error. The same test script works fine from command line when I activate the conda environment and run from with in it. It also works from PyCharm. But somehow fails to launch in Eclipse. Traceback (most recent call last): File "C:\Data\projects\eclipse-workspace\PythonEclipse\Test.py", line 1,