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

推荐订阅源

GbyAI
GbyAI
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
D
Docker
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
美团技术团队
V
V2EX
Last Week in AI
Last Week in AI
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
B
Blog RSS Feed
博客园_首页
B
Blog
博客园 - 叶小钗
I
InfoQ
WordPress大学
WordPress大学
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
The Register - Security
The Register - Security
MyScale Blog
MyScale Blog
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Latest news
Latest news
W
WeLiveSecurity
T
The Exploit Database - CXSecurity.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
Cyberwarzone
Cyberwarzone
Scott Helme
Scott Helme
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
CERT Recently Published Vulnerability Notes
C
CXSECURITY Database RSS Feed - CXSecurity.com
Recent Commits to openclaw:main
Recent Commits to openclaw:main
N
News and Events Feed by Topic
S
Secure Thoughts
The Hacker News
The Hacker News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News

博客园 - CatAlien_Lee

AI写的小说,且行且看... 美丽的极光&舒适的生活-----BeLike 基于GMM的EM算法(机器学习) -----致谢2017 几个有趣的函数 常用泰勒展开式 #考研数学 #高数笔记 #数学公式 #高等数学 Simple&Lucky 使用任意拉格朗日-欧拉方法模拟变形物体 宇腾软件,专注于供应链及物流 葫芦娃,要远离&小心毒蛇和蝎子。 屋顶望月 随缘打赏 关于Ubuntu24.04源失效问题 安卓的公式编辑器MathMagic 大学物理上册 window 创建py虚拟环境 ubuntu安装sogou输入法 [Chrome] 如何下载老版本的 Chrome linux 文件、文件夹权限 ubuntu更新字体SimHei.ttf pip 虚拟环境
科学使用Python之conda and install python3.8
CatAlien_Lee · 2024-08-26 · via 博客园 - CatAlien_Lee

install python3.8
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install -y python3.8 libpython3.8-dev python3.8-dev python3.8-distutils

sudo apt-get install curl

1、curl -O https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh

2、sudo bash Anaconda3-2020.02-Linux-x86_64.sh

3、source ~/.bashrc

4、查看当前存在的虚拟环境:使用以下命令查看当前存在的conda虚拟环境:
conda env list

5、创建新的虚拟环境
conda create -n your_env_name python=X.X

6、激活虚拟环境
conda activate your_env_name

7、卸载虚拟环境
conda remove --name your_env_name --all

8、退出虚拟环境
conda deactivate