惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tenable Blog
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
H
Help Net Security
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 司徒正美
量子位
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recorded Future
Recorded Future
博客园 - 三生石上(FineUI控件)
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
Scott Helme
Scott Helme
The Last Watchdog
The Last Watchdog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
IT之家
IT之家
AI
AI
WordPress大学
WordPress大学
Security Archives - TechRepublic
Security Archives - TechRepublic
Google Online Security Blog
Google Online Security Blog
U
Unit 42
V2EX - 技术
V2EX - 技术
MongoDB | Blog
MongoDB | Blog
Schneier on Security
Schneier on Security
博客园 - Franky
H
Heimdal Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
W
WeLiveSecurity
P
Privacy & Cybersecurity Law Blog
Cloudbric
Cloudbric
B
Blog RSS Feed
N
News | PayPal Newsroom
S
Securelist
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
I
Intezer
Hacker News - Newest:
Hacker News - Newest: "LLM"
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
博客园_首页
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
雷峰网
雷峰网

博客园 - ☆磊☆

Win10 x64 + CUDA 10.0 + cuDNN v7.5 + TensorFlow GPU 1.13 安装指南 工作十一年总结 - ☆磊☆ - 博客园 Win Linux 双系统安装指南 OBS 录制视频 自己留存 - ☆磊☆ React Starter Kit 中文文档 - ☆磊☆ .NET Framework 系统版本支持表 Hyper-V和其他虚拟机共存 【转】 Docker入门03——Container Docker入门02——Dockerfile详解 Docker入门01——Image GORM 中文文档 - ☆磊☆ - 博客园 将以前的文章开始慢慢转到这里发表 环境变量 在 Linux 中安装 VMware Tools WordPress中使用Markdown和Syntax Highlighter .gitignore 失效问题解决 Eclipse Aptana GAE Django HelloWorld 示例 TFS 迁移到 Git NLog 2.0.0.2000 使用实例
Anaconda3 指南
☆磊☆ · 2017-07-30 · via 博客园 - ☆磊☆

Anaconda 是一个 Python 的生态。它包含很多的科学计算库和大数据处理工具等。

$ python --version
Python 3.6.1 :: Anaconda 4.4.0 (64-bit)

# 创建一个名为python36的环境,指定python版本为3.6(指定3.6则会寻找3.6.x的最新版本)
$ conda create --name python36 python=3.6

# 激活指定环境
$ activate python36 # for Windows
$ source activate python36 # for Linux & Mac

# 取消激活,回到系统默认(Linux和Mac为2.7.x  Windows为环境变量设置)
$ deactivate python36 # for Windows
$ source deactivate python36 # for Linux & Mac

# 删除指定环境
$ conda remove --name python36 --all

# 查看环境信息或查看环境列表
$ conda info
$ conda info -e

# 确认当前环境
$ conda info -envis
# 修改源
# 添加清华的源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
# 设置搜索时显示地址
conda config --set show_channel_urls yes
# 更新conda
$ conda update conda

# 更新anaconda
$ conda update anaconda

# 更新python到最新小版本
$ conda update python
# 查看当前环境或指定环境已安装package
$ conda list
$ conda list -n python36

# 查找package信息
$ conda search numpy

# 安装package到当前环境或指定环境
$ conda install numpy
$ conda install -n python36 numpy

# 更新package到当前环境或指定环境
$ conda update numpy
$ conda update -n python36 numpy

# 删除package到当前环境或指定环境
$ conda remove numpy
$ conda remove -n python36 numpy