Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Install pyenv on the system where you will run ingestion. If you're using our VMs, this should be on your local system, not one of the VMs.

Code Block
languagebash
titleInstall pyenv
# run as 'ingestion' user
git clone https://github.com/pyenv/pyenv.git ~/.pyenv


echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(pyenv init -)"' >> ~/.bashrc


exec $SHELL


Install Python 2.7.6 by running pyenv install 2.7.6.  If you're on a server where the legacy ingestion system is the only Python application, make that the global default by typing pyenv global 2.7.6.

...