Scripts to assist in managing Space Engineers world save files. This repo is currently in early Alpha - most features are missing or broken.
To install and use se_save_tools you will need:
Navigate to your web projects directory and use git to clone the project files into a new directory:
via SSH
git clone [email protected]:zrisher/se_save_tools.git
or via HTTPS
git clone https://github.com/zrisher/se_save_tools
Conda manages a virtual environment of python libraries and sources.
- Create a conda environment and load this project's dependencies
conda env create --file environment.yml
- Tell Conda to use it for our current session
activate zrisher-se-save-tools
- If you ever need to deactivate it, you can use
deactivate zrisher-se-save-tools
Occasionally you will need to update conda's packages. Do this by activating your
environment, then conda env update --file environment.yml
.
Now that Conda has set up our virtual environment and downloaded Pip, we can use Pip to install the packages which Conda doesn't support directly into our environment.
pip install -r requirements.txt
pip install --upgrade -r requirements.txt
py.test
, add -s
flag to view log output
Maybe eventually: