-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace "yes |" with an equivalent command-line option
- Loading branch information
1 parent
7ba7747
commit 31394c0
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ Then, create a new conda environment, and install orange3: | |
conda config --add channels conda-forge | ||
|
||
# Create and activate an environment for Orange | ||
yes | conda create python=3 --name orange3 | ||
conda create python=3 --yes --name orange3 | ||
conda activate orange3 | ||
|
||
# Install Orange | ||
|
@@ -146,7 +146,7 @@ export MY_GITHUB_USERNAME=replaceme | |
create a conda environment, clone your fork, and install it: | ||
|
||
```Shell | ||
yes | conda create python=3 --name orange3 | ||
conda create python=3 --yes --name orange3 | ||
conda activate orange3 | ||
|
||
git clone ssh://[email protected]/$MY_GITHUB_USERNAME/orange3 | ||
|
@@ -186,7 +186,7 @@ export MY_GITHUB_USERNAME=replaceme | |
create a conda environment, clone your forks, and install them: | ||
|
||
```Shell | ||
yes | conda create python=3 --name orange3 | ||
conda create python=3 --yes --name orange3 | ||
conda activate orange3 | ||
|
||
git clone ssh://[email protected]/$MY_GITHUB_USERNAME/orange-widget-base | ||
|