Anaconda

Using anaconda environments with cygwin on windows

大城市里の小女人 提交于 2019-12-31 08:45:32
问题 Trying to set up environments with anaconda through the cygwin interface on Windows NT, and failing. Creating environments ( conda create -n test_env ) works fine. But activate test_env fails. I tried hacking it with: export PATH=/cygdrive/c/users/nick/anaconda3/envs/test:$PATH This fixes some behavior ( which python points to the right python). But if I then do a "conda install" command, it installs into the root anaconda directory, not the environment. Perhaps the export is local to the

how to update spyder on anaconda

白昼怎懂夜的黑 提交于 2019-12-31 08:08:49
问题 I have Anaconda installed (Python 2.7.11 |Anaconda custom (64-bit)| (default, Feb 16 2016, 09:58:36) [MSC v.1500 64 bit (AMD64)] on win32) and I am using Spyder 2.3.8 Would like to update Spyder to the latest version, so I went through the commands: conda update conda conda update anaconda conda update spyder They all ran without errors, but the spyder version didn't change - this is command I'm using to launch: C:\Anaconda2\pythonw.exe C:\Anaconda2\cwp.py C:\Anaconda2 "C:/Anaconda2/pythonw

how to update spyder on anaconda

穿精又带淫゛_ 提交于 2019-12-31 08:08:10
问题 I have Anaconda installed (Python 2.7.11 |Anaconda custom (64-bit)| (default, Feb 16 2016, 09:58:36) [MSC v.1500 64 bit (AMD64)] on win32) and I am using Spyder 2.3.8 Would like to update Spyder to the latest version, so I went through the commands: conda update conda conda update anaconda conda update spyder They all ran without errors, but the spyder version didn't change - this is command I'm using to launch: C:\Anaconda2\pythonw.exe C:\Anaconda2\cwp.py C:\Anaconda2 "C:/Anaconda2/pythonw

Create a customized installer like Anaconda, with Conda

别来无恙 提交于 2019-12-31 05:01:08
问题 I am trying to encapsulate my python environment so it can be used on different maachines. For the purpose I did use pipenv and it works fine. Now I discovered Anaconda, and I found the idea brilliant: you can download the installer (pkg or win installer), and it will do everything you do by hand, while installing the virtualenv, activate it and even set up a Jupyter interface. Is there a procedure that allow users to implement the same, using Conda, so a user just download the package,

Anaconda Navigator does not show new environments

北城以北 提交于 2019-12-31 03:50:49
问题 When I add a new environment in Anaconda Navigator it will create the environment, but it won't show it in the UI. I can see the environment via the prompt, so I know it has been created. It just won't show it in the UI. What do I need to do to get it to show up in the UI? 回答1: Please update Anaconda-Navigator by running conda update anaconda-navigator and restarting. 来源: https://stackoverflow.com/questions/43541283/anaconda-navigator-does-not-show-new-environments

Python: “ModuleNotFoundError”, but module is installed?

三世轮回 提交于 2019-12-31 03:12:06
问题 I realize this seems like a generic question, but all answers pointed to having two simultanious python installations - I already uninstalled the other one. Currently I run my code from PyCharm 2017.1.5 (windows 10) with Python interpreter set as Python 3.6.1 (C:\Anaconda3\python.exe) , i.e. I installed Anaconda3 , which includes the matplotlib , and run from PyCharm using the Ananconda3 -interpreter. I've checked in Anaconda Navigator that matplotlib 2.0.2 is installed in the environment. A

Windows10环境 搭建Anaconda tensorflow 1.2 修复spyder不能打开的问题

随声附和 提交于 2019-12-31 01:33:34
Win10 Anaconda (py3.6) python3.5 + tensorflow 1.2 总算能正常打开spyder了 目前阶段 tensorflow 在windows平台上貌似只支持 python 3.5 的大版本号 目前换个包也就能支持python3.6了,应该不用这么蛋疼了 1、设置安装源 打开Anaconda Prompt 设置输入清华的仓库镜像,第一次添加,第二次移至最优先 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes 2、安装TensorFlow 继续打开Anaconda Prompt,输入: conda create -n tensorflow python=3.5 安装完以后,输入: activate tensorflow 激活后,我选择安装的是CPU版本,输入: pip install --ignore-installed --upgrade https://storage

转:Win10下用Anaconda安装TensorFlow

妖精的绣舞 提交于 2019-12-31 01:33:19
转自:https://www.cnblogs.com/afangxin/p/6992050.html 笔者之前在学习TensorFlow,也在自己的笔记本上完成了安装,在PyCharm中进行学习。但是最近为了使用 Python 的科学计算环境,我把之前的环境卸载了,并用Anaconda重新安装了TensorFlow,这里介绍一下cpu版本的安装方法。 前提检查: 在 https://developer.nvidia.com/cuda-gpus 确认你的显卡支持 CUDA,如果你安装的是gpu版本的tensorflow才需要检查这一步。 确保你的Python版本是3.5 64位。 确保你有稳定的网络连接。 确保你的pip版本 >= 8.1。用 pip -V 查看当前 pip 版本,用 python -m pip install -U pip 升级 pip 。 确保你安装了 VS2015 或者 2013 或者 2010。此条非必须,删除。 1.安装Anaconda 选择相应的Anaconda进行安装,下载地址:https://www.continuum.io/downloads/,下载对应系统版本的Anaconda,官网现在的版本是Anaconda 4.4.0 for python3.6。笔者安装的是4.4.0版本的。 就和安装普通的软件一样,全部选择默认即可,注意

windows系统用anaconda配置安装TensorFlow

*爱你&永不变心* 提交于 2019-12-31 01:32:26
(2017.4.13)tensorflow支持python3.5版本 1.打开anaconda依次输入: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 这里是利用了清华的一个镜像来更新你的anaconda,输入两次,第二次是为了把这个url置顶。 conda config --set show_channel_urls yes url配置结束,这里开始配置python3.5 envs。 2.配置envs: conda creat -n python35 创建python35环境用来加载TensorFlow。 activate python35 这里是激活python35。(如果你anaconda中安装其他python3版本,也可以用这个来切换envs) pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0-cp35-cp35m-win_amd64.whl pip安装。 3.修改jupyter notebook 内核: python -m ipykernel install --user -

Conda not recognized as internal or external after creating new environment

余生颓废 提交于 2019-12-30 12:17:08
问题 conda command was working fine from Anaconda prompt. I created a new environment for tensorflow after which it says - 'conda' is not recognized as an internal or external command,operable program or batch file. I have checked all my PATH variables, and root, scripts and lib folder paths are added to the PATH . It just does not recognize any commands - conda, activate, deactivate, any of these. 回答1: I also faced the same issue. PATH s were also fine but I was unable to execute the conda