Skip to content

viktorcsanak/path-tracking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SZTE_MSc_L industrial image processing project

Recommended environment

The project should be run on one of the latest popular gnu/linux distributions, preferably Ubuntu.

Environment packages

Running the project will require the python virtualenv package and a python3.8.x installation. To do that, simply install the virtualenv package available on pypi.org and download a tarball with an older python3.8 release from the official site.
pipX install virtualenv
wget https://www.python.org/downloads/release/python-3816/

It will also require libbz2-dev libraries, so the interpreter can be compiled with bz2 support and it will also require liblzma-dev. apt-get install libbz2-dev liblzma-dev

Build python interpreter from source

Extract the tar archive downloaded in the previous step. Run the configure script available in the directory where it was extracted. Running the configuration script with the option --prefix=${installation_path} will define the path where the interpreter should be installed after building. Set it to a directory which the user have access to, since the build may fail when trying to install the interpreter to /usr/local/bin. It is NOT recommended to run the build as root.

Once the build environment is initialised, run make altinstall. This command will build the interpreter and install it to the directory defined by ${installation_path} and will do that without modifying already existing installations.

Setup python environment

Once we have the required python installation, we should create a virtualenv with the --pyton switch set to the path of the python3.8.x interpreter binary available at ${installation_path}/bin/python3.8. After the virtualenv is setup to use the appropriate interpreter version, source the environment and install the dependencies in requirements.txt.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages