- Linux (Ubuntu):
apt install curl
Telepítés a Miniconda révén (Linux, macOS, Windows):
conda config --add channels conda-forge
Installing with Miniconda (Linux, macOS, Windows):
conda config --add channels conda-forge
This file contains 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
#!/bin/bash | |
if [ "$#" -ne 3 ]; then | |
echo "Usage: $(basename $0) <filename> <description> <username>" | |
exit | |
fi | |
filename=$1 | |
description=$2 | |
username=$3 |
OlderNewer