Masab Anees
06/06/2022, 9:14 AMjuanlu
06/06/2022, 9:15 AMorchest uninstall
4. rerun orchest install
, see what happens
but that's a no-go as well, since @Masab Anees would need to have the files there in the remote VMYannick
06/06/2022, 9:24 AMIs there a way for me to download the Orchest package from my online environment and install and dockerize it on the VMs?Hmmm I am not completely sure I understand what you are asking here. Are you trying to install Orchest on a "clean" VM and after the installation you would remove internet access from the VM? Orchest is already fully containerized. Strictly speaking, Orchest can run without internet access but in general I would not recommend it. To run pipelines in Orchest you need to have Docker images on the VM that represent environments (you could pull these onto the VM before removing internet access). Furthermore, the moment you require a new package, e.g.
pandas
, you would need a way to pull in/install that new package.Rick Lamers
06/06/2022, 2:26 PMKevin Lalli
06/06/2022, 3:44 PMYannick
06/06/2022, 4:03 PMpip install -r requirements.txt
you can also install from some package inside the project directory (e.g. pip install -e mypackage
)Masab Anees
06/07/2022, 7:50 AM