Answers:
从Source Code Pro主页下载档案。您也可以使用以下方法进行操作wget
:打开终端(按ctrl-alt-t或按Win键并键入“ terminal”),然后键入
wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
解压缩存档文件(您可以使用Nautilus或使用以下命令)。
unzip 1.050R-it.zip
在主目录中创建一个名为“ .fonts”的目录(或者在Nautilus中转到主目录并创建一个新文件夹,或者在终端中键入以下内容)
mkdir -p ~/.fonts
如果您已经有了该目录,请不要担心。
将Open Type字体(* .otf)移动到新创建的.fonts目录。在命令行中,这将是
cp source-code-pro-*-it/OTF/*.otf ~/.fonts/
如果尚未完成操作,请打开终端,然后键入
fc-cache -f -v
您的字体现在可以使用了,应用程序应该可以看到它了。
对于那些只想复制/粘贴答案的人,一个脚本
#!/bin/bash
set -euo pipefail
I1FS=$'\n\t'
mkdir -p /tmp/adodefont
cd /tmp/adodefont
wget -q --show-progress -O source-code-pro.zip https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
unzip -q source-code-pro.zip -d source-code-pro
mkdir -p ~/.fonts
cp -v source-code-pro/*/OTF/*.otf ~/.fonts/
fc-cache -f
rm -rf source-code-pro{,.zip}
如果要安装整个系统而不是每个用户,请将文件复制到/usr/local/share/fonts/
而不是~/.fonts/
。
为了安装Source Code Pro,您可以:
source code
搜索框(唯一的比赛应该是源代码临)现在,您只需要将Zip文件解压缩到您的~/.fonts
文件夹中:
mkdir -p ~/.fonts/Source_Code_Pro
unzip Source_Code_Pro.zip -d ~/.fonts/Source_Code_Pro
您可能需要运行
fc-cache -f
使字体可用(无需注销)。
我的答案与其他人类似,只是似乎已删除了URL,只是更新了URL。专业人士的新家似乎在github上。github上的源代码专业版。
#!/bin/bash
mkdir /tmp/adodefont
cd /tmp/adodefont
wget https://github.com/adobe-fonts/source-code-pro/archive/1.017R.zip
unzip 1.017R.zip
mkdir -p ~/.fonts
cp source-code-pro-1.017R/OTF/*.otf ~/.fonts/
fc-cache -f -v
根据GitHub帖子,此脚本对我有用。我必须修改文件夹名称才能使其正常工作。
version=1.050
echo "\n* Downloading version $version of source code pro font"
rm -f SourceCodePro_FontsOnly-$version.zip
rm -rf SourceCodePro_FontsOnly-$version
font_folder=source-code-pro-2.030R-ro-${version}R-it
zip_file=${version}R-it.zip
wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/$zip_file
echo "\n* Unziping package"
unzip $zip_file
mkdir -p ~/.fonts
echo "\n* Copying fonts to ~/fonts"
cp $font_folder/OTF/*.otf ~/.fonts/
echo "\n* Updating font cache"
sudo fc-cache -f -v
echo "\n* Looking for 'Source Code Pro' in installed fonts"
fc-list | grep "Source Code Pro"
echo "\n* Now, you can use the 'Source Code Pro' fonts, ** for sublime text ** just add the lines bellow to 'Preferences > Settings':"
echo '\n "font_face": "Source Code Pro",'
echo ' "font_size": 10'
echo "\n* Finished :)\n"
github上还有一个可用的第三方debian软件包。
安装:
git clone https://github.com/hainp/source-code-pro-deb
cd source-code-pro-deb
sudo apt-get install debhelper
dpkg-buildpackage -rfakeroot -b -uc -us
sudo dpkg -i ../fonts-source-code-pro_1.017_all.deb
sudo wget --content-disposition -P /usr/share/fonts/opentype/source-code-pro https://github.com/adobe-fonts/source-code-pro/blob/482adcaccf9777f2850974e08c60e706b1ad9169/OTF/SourceCodePro-{Black,BlackIt,Bold,BoldIt,ExtraLight,ExtraLightIt,It,Light,LightIt,Medium,MediumIt,Regular,Semibold,SemiboldIt}.otf?raw=true
这将安装该字体的最新发行版,该发行版于2016年7月18日发布。
fonts-source-code-pro
软件包添加到Debian中……