2021年11月29日 星期一

用shell 在Xubuntu 18.04x64 安裝 Anaconda 3

檔案名稱:Anaconda3InstallXub1804x64.sh
檔案內容:
#!/bin/bash
apt-get update
apt-get install vim wget
wget https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh
sh Anaconda3-2020.02-Linux-x86_64.sh -y
chown -R $USER:$USER ~/anaconda3
source ~/.bashrc

如何使用?
$sudo chmod 777 Anaconda3InstallXub1804x64.sh
$sudo sh Anaconda3InstallXub1804x64.sh


沒有留言:

張貼留言

Laravel 12 Model 資料庫中的資料表,並提供與資料庫互動的介面

相關系列文章: 1. 在 windows 10 安裝 laravel 12 studentManagement環境與設定 2. laravel 12 route 路由 3. laravel 12 Blade Templates 網頁模版 4. laravel 12 Control...