Linux 切換Python3環境

2021-10-10 13:30:30 字數 2024 閱讀 3227

目錄

ln命令

ln -s 軟鏈結用法

硬鏈結切換環境

name

ln - make links between files

synopsis

ln [option]... [-t] target link_name   (1st form)

ln [option]... target                  (2nd form)

ln [option]... target... directory     (3rd form)

ln [option]... -t directory target...  (4th form)

對於乙個檔案來說,有唯一的索引接點與之對應,而對於乙個索引接點號,卻可以有多個檔名與之對應。因此,在磁碟上的同乙個檔案可以通過不同的路徑去訪問該檔案。

description

in the 1st form, create a link to target with the name link_name.  in the 2nd form, create a link to target in the current direc‐tory.  in the 3rd and 4th forms, create links to each target in directory.  create hard links by  default,  symbolic  links  with  --symbolic.   by  default,  each  destination (name of new link) should not already exist.  when creating hard links, each target must exist.  symbolic links can hold arbitrary text; if later resolved, a relative link is interpreted in relation to its  parent directory.

--backup[=control]

make a backup of each existing destination file

-b     like --backup but does not accept an argument

-d, -f, --directory

allow the superuser to attempt to hard link directories (note: wil

superuser)

-f, --force

remove existing destination files

-i, --interactive

ln –s 原始檔 目標檔案。

連線有軟連線和硬連線(hard link)之分的,軟連線(symbolic link)又叫符號連線。符號連線相當於windows下的快捷方式。 軟鏈結實際上只是一段文字,裡面包含著它所指向的檔案的名字,系統看到軟鏈結後自動跳到對應的檔案位置處進行處理。

只會在選定的位置上生成乙個檔案的映象,不會占用磁碟空間,類似與windows的快捷方式。

ln -s  /home/jackxiang/mhxy20*hn.act/htdocs mhxy20*hn.act  //實際目錄  ,軟目錄 的順序
ln 原始檔 目標檔案

沒有引數-s

硬連線可以看作是同乙個檔案的不同命名。 硬聯接為檔案開設乙個新的目錄項,硬鏈結與檔案原有的名字是平權的,在linux看來它們是等價的。由於這個原因,硬鏈結不能連線兩個不同檔案系統上的文 件。 不可以對資料夾建立硬連線的,通常用的還是軟連線比較多。

會在選定的位置上生成乙個和原始檔大小相同的檔案,無論是軟鏈結還是硬鏈結,檔案都保持同步變化。

python3與python2環境切換

mac本上安裝了python2,然後又安裝了python3.需要python3 與 python2之間切換。配置環境變數 vim bash profile 如下內容 if e bashrc then source bashrc fi added by miniconda2 4.2.12 instal...

linux下安裝python3環境

3.7.5版本,1 一般安裝好後,pip3已經安裝好了。除了需要安裝一些系統缺失的元件zlib,openssl等,這些元件需要解壓liunx映象獲取,rpm ivh name.rpm nodeps。2 從windows環境,部署到linux下,可以把虛擬環境copy到linux下的puthon3的s...

linux系統安裝python3環境

2 解壓 3 安裝編譯環境 4 安裝依賴環境 5 預編譯 6 安裝 7 環境變數配置 8 驗證 執行命令tar zxvf python 3.7.6.tgz進行解壓 root localhost opt ll 總用量 22612 drwxr xr x.18501 5014096 12月 18 2019...