Created
December 28, 2021 06:33
-
-
Save otogawakatsutoshi/584fea90583889f42cf652ea9495eb90 to your computer and use it in GitHub Desktop.
setup Fedora Desktop environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export YOUR_GITHUB_ACCESS_TOKEN_FOR_GITHUBCLI='YOURSECRET' | |
export GIT_YOUR_NAME='YOURENARE' | |
export GIT_YOUR_EMAIL='YOUREMAILADDRESS' | |
# install google-chrome | |
sudo dnf install -y google-chrome-stable | |
# install git | |
sudo dnf install -y git | |
git config --global user.name GIT_YOUR_NAME | |
git config --global user.email GIT_YOUR_EMAIL | |
# install Git Hub cli | |
curl -O https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_Linux_amd64.tar.gz | |
# install Anaconda | |
curl -O https://repo.anaconda.com/archive/Anaconda3-5.3.1-Linux-x86_64.sh | |
chmod u+x Anaconda3* | |
./Anaconda3* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment