-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further housekeeping of installation scripts
- Loading branch information
1 parent
6dc7594
commit a468272
Showing
10 changed files
with
85 additions
and
53 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.0.12' | ||
__version__ = '0.0.13' |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/bash | ||
|
||
# Start up script for setting up environment on Ubuntu 20.04 LTS | ||
|
||
export PKGNAME='eeyore' | ||
export PYVERSION='3.6' | ||
export CONDADIR="$HOME/opt/continuum/miniconda/miniconda3" | ||
export PYPKGDIR="$HOME/opt/python/packages" | ||
export CONDABIN="$CONDADIR/bin/conda" | ||
export CONDASCRIPT='Miniconda3-latest-Linux-x86_64.sh' | ||
export PKGURL="https://github.com/papamarkou/$PKGNAME.git" | ||
|
||
sudo apt-get update | ||
|
||
sudo apt-get install tree | ||
|
||
wget https://repo.anaconda.com/miniconda/$CONDASCRIPT | ||
chmod u+x $CONDASCRIPT | ||
|
||
$SHELL $CONDASCRIPT -b -p $CONDADIR | ||
|
||
$CONDABIN create -n $PKGNAME -y python=$PYVERSION | ||
|
||
$CONDABIN init $(basename $SHELL) | ||
$CONDABIN config --set auto_activate_base false | ||
|
||
mkdir -p $PYPKGDIR | ||
cd $PYPKGDIR | ||
git clone $PKGURL | ||
cd $PKGNAME | ||
python setup.py develop --user | ||
|
||
rm $CONDASCRIPT |
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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
|
||
# Start up script for setting up environment on Ubuntu 20.04 LTS | ||
|
||
export METAUSER='theodore' | ||
export BASEDIR="/home/$METAUSER" | ||
export PKGNAME='eeyore' | ||
export PYVERSION='3.6' | ||
export CONDADIR="$HOME/opt/continuum/miniconda/miniconda3" | ||
export PYPKGDIR="$HOME/opt/python/packages" | ||
export CONDABIN="$CONDADIR/bin/conda" | ||
export CONDASCRIPT='Miniconda3-latest-Linux-x86_64.sh' | ||
export PKGURL="https://github.com/papamarkou/$PKGNAME.git" | ||
|
||
sudo apt-get update | ||
|
||
sudo apt-get install tree | ||
|
||
su - $METAUSER -c "wget https://repo.anaconda.com/miniconda/$CONDASCRIPT" | ||
su - $METAUSER -c "chmod u+x $CONDASCRIPT" | ||
|
||
su - $METAUSER -c "$SHELL $CONDASCRIPT -b -p $CONDADIR" | ||
|
||
su - $METAUSER -c "$CONDABIN create -n $PKGNAME -y python=$PYVERSION" | ||
|
||
su - $METAUSER -c "$CONDABIN init $(basename $SHELL)" | ||
su - $METAUSER -c "$CONDABIN config --set auto_activate_base false" | ||
|
||
su - $METAUSER -c "mkdir -p $PYPKGDIR; | ||
cd $PYPKGDIR; | ||
git clone $PKGURL; | ||
cd $PKGNAME; | ||
$CONDABIN activate $PKGNAME; | ||
python setup.py develop --user" | ||
|
||
rm $CONDASCRIPT |
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
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
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