Anaconda

difference between command prompt and anaconda prompt

你。 提交于 2020-01-19 04:46:06
问题 I installed anaconda into my computer using python. After I install the software, I found there is one program called anaconda prompt. What is the difference between anaconda prompt and command prompt? If I want to update the package, which one I should use or either one. Like (conda update conda) Thank you 回答1: Anaconda command prompt is just like command prompt, but it makes sure that you are able to use anaconda and conda commands from the prompt, without having to change directories or

difference between command prompt and anaconda prompt

本秂侑毒 提交于 2020-01-19 04:45:45
问题 I installed anaconda into my computer using python. After I install the software, I found there is one program called anaconda prompt. What is the difference between anaconda prompt and command prompt? If I want to update the package, which one I should use or either one. Like (conda update conda) Thank you 回答1: Anaconda command prompt is just like command prompt, but it makes sure that you are able to use anaconda and conda commands from the prompt, without having to change directories or

Anaconda安装Tensorflow

烂漫一生 提交于 2020-01-19 00:28:10
Anaconda安装Tensorflow 1.第一步安装Anaconda: Anaconda3清华源下载 选择适合自己的系统,64位/32位版本下载,安装特别简单,一直next 2.安装完成后,打开 ,Anaconda的图形化界面。 3.新建关于tensorflow的python环境并安装tensorflow 3.1 在Anaconda中打开终端,先看一下适合自己当前Anaconda的tensorflow版本有哪些: conda search --full tensorflow 部分截图如下: 选择自己想要安装的,我选择的是2.0.0版本,python3.7; 3.2 换清华源,方便以后安装其他包 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 3.3 创建对应的tensorflow环境 推荐用pip方式 3.4 清华源安装tensorflow(指定版本号2.0.0) pip install tensorflow==2.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 把版本号改为自己Anaconda能支持的(上面列出来的) 4.测试安装是否成功 成功!!! 心得: 1.不用自己去适配cuda,cudnn

windows下载安装anaconda+pycharm

三世轮回 提交于 2020-01-18 23:43:13
anaconda 下载anaconda网址: https://www.anaconda.com 如果下载速度过慢,可以百度 anaconda 清华镜像 建议下载 Anaconda3-5.2.0-Windows-x86.exe 以上版本 pycharm pycharm下载地址: https://www.jetbrains.com/pycharm/download/#section=windows Pycharm 具体安装教程可参考如下博客: pycharm安装教程 来源: CSDN 作者: 北木. 链接: https://blog.csdn.net/weixin_43283397/article/details/104028319

Linux文件/目录的权限及归属管理精讲

佐手、 提交于 2020-01-17 09:26:50
一、文件的权限和归属概述 1、访问权限 读取r:允许查看文件内容、显示目录列表; 写入w:允许修改文件内容,允许在目录中新建、移动、删除文件或子目录; 可执行x:允许运行程序、切换目录 2、归属(所有权) 属主:拥有该文件或目录的用户账号; 属组:拥有该文件或目录的组账号; 3、查看文件的权限和归属 4、chmod设置文件权限 chmod命令的基本语法格式如下: 应用举例: [root@centos01 ~]# touch 1.txt <!--创建1.txt文件--> [root@centos01 ~]# ll 总用量 8 -rw-r--r-- 1 root root 0 1月 11 22:27 1.txt -rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg -rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg [root@centos01 ~]# chmod u+x ./1.txt <!--属主用户添加执行权限--> [root@centos01 ~]# ll 总用量 8 -rwxr--r-- 1 root root 0 1月 11 22:27 1.txt -rw-------. 1 root root 1572 10月 23 22:37

Cannot install plyfile in Anaconda

守給你的承諾、 提交于 2020-01-17 07:44:06
问题 When u=i try to run the command conda install plyfile in windows command prompt Fetching package metadata ........... PackageNotFoundError: Package not found: '' Package missing in current win-64 channels: - plyfile Close matches found; did you mean one of these? plyfile: olefile You can search for packages on anaconda.org with anaconda search -t conda plyfile I tried to use pip install plyfile and it executed without any error but it still won't show up in Anaconda. 回答1: Go into your

Anaconda环境下安装库

流过昼夜 提交于 2020-01-17 06:51:00
使用anaconda环境下使用pycharm后,有些其他库也想安装,但开始在python.exe目录下安装没成功,因为pycharm用的环境已经不是原始的python.exe解释器了。就总结了一些安装库的方法。 注:这些方法不是最简便的,仅供学习扩展用。 一、安装selenium库 1、下载anaconda 2、把anaconda中python解释器地址放在path环境变量中 3、在cmd中输入python,会看到anaconda运行解释器 4、pip install selenium 二、selenium库扩展:安装Chromedriver 下载链接: http://chromedriver.storage.googleapis.com/index.html https://chromedriver.storage.googleapis.com/2.39/notes.txt 下载完成后: windows 下,新建一个命名为chromedriver文件夹,将解压的chromedriver.exe放进文件夹,再配置进path环境变量 Linux下,把下载好的文件放在 /usr/bin 目录下就可以了。 三、安装PhantomJS库 (现在不维护了) 官网下载页面:http://phantomjs.org/download.html 去下载你对应操作系统版本的phantomjs

From Mac to PC - Different Anaconda environments

寵の児 提交于 2020-01-17 06:08:09
问题 I am a long time Mac/Linux user who has recently purchased a Windows laptop. I have two completely separate Anaconda installations on my Mac using PyEnv which allows me to isolate them effectively. Sure it wastes a bit of space on my Mac's hard disk, but I do not mind. I am returning to a Windows machine after a long time, so I am not quite up to speed yet. Is there a way to effectively isolate two different versions of Anaconda on Windows? One for python 3 and other for python 2? I am

numpy.histogram fails after updating anaconda

爷,独闯天下 提交于 2020-01-17 05:29:34
问题 I have been using the matplotlib function plt.hist to generate histogram data from an array of values mV . This has worked fine in the past, but ever since I've updated my version of anaconda it throws back a ValueError : --------------------------------------------------------------------------- ValueError Traceback (most recent call last) /users/benjatin/HomeData/Code/buildSkyMap.py in <module>() 72 #get histogram of efficiencies 73 plt.figure() ---> 74 a=plt.hist(mV,bins=50) 75 plt.close()

Wrong pip version for anaconda's environments. What should I do to correct the pip version when activate a env using `conda activate`?

好久不见. 提交于 2020-01-16 19:06:37
问题 I have 4 envs in my anaconda as listed below. >>> conda info --envs base /home/gph/anaconda3 py36_torch0.4 * /home/gph/anaconda3/envs/py36_torch0.4 py37_torch1.1 /home/gph/anaconda3/envs/py37_torch1.1 python3.6 /home/gph/anaconda3/envs/python3.6 In both py36_torch0.4 and py37_torch1.1, I did some test. >>>(py36_torch0.4) gph@gph-1050Ti:~ $ whereis pip pip: /home/gph/.local/bin/pip3.5 /home/gph/.local/bin/pip /home/gph/anaconda3/envs/py36_torch0.4/bin/pip3.6 /home/gph/anaconda3/envs/py36