File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 2
2
# # This post project generation script only runs if pipenv is on the machine
3
3
command -v pipenv > /dev/null 2>&1 || { echo >&2 " pipenv not found. Aborting startup script." ; exit 1; }
4
4
5
- # # Main installs typical to a project
6
- pipenv install --python $( pyenv version-name) ipython ipykernel pandas matplotlib notebook jupyterlab altair jupytext jupyterlab_templates
7
-
8
- # # Add the first install script to the Pipfile and rmarkdown export script
9
- echo -e " \n[scripts]\nfirst_install = \" python .first_install.py\" \nexport_rmarkdown = \" Rscript .export_rmarkdown.R\" " >> Pipfile
10
-
11
5
# # Run first_install script
12
6
# ### This is meant to be run when people first clone the project.
13
7
# ### Running it here to add jupyter data directory env variable, to set the RETICULATE_PYTHON r env
14
8
# ##### variable, to set up the jupyter lab template directory/enable its server,
15
9
# ##### and to set up the git solution for changing cwd in an analysis file.
16
- pipenv run first_install
10
+ python ./. first_install.py
You can’t perform that action at this time.
0 commit comments