-
Hello dears |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 9 replies
-
Hi, You need to run the ubuntu:latest template, you can also try with the Ubuntu server 20.04 template
Restart the pod.
-edit the main.py file in the ui folder, at line 78 replace
-install the app
Run the app python run.py -if you get any errors when starting run.py simpy restart the app, if the issues persist |
Beta Was this translation helpful? Give feedback.
-
just to mention, I setup a tensorDock on Windows in just a few minutes :) then you can just RDP to it. |
Beta Was this translation helpful? Give feedback.
-
I'm a bit of a n00b here. How do you guys deal with all of these dependencies not being retained across restarts in RunPod? When I'm doing the steps:
I immediately get the error that conda is not found after restart. |
Beta Was this translation helpful? Give feedback.
-
A better guide: Step 1: Run the TemplateTo begin, use one of the following templates:
Step 2: Update System and Install Essential PackagesFirst, update the system and install the necessary packages by running the following commands: apt update && apt upgrade -y
apt install -y nano git build-essential g++-12 nvidia-cuda-toolkit ffmpeg
export PATH=$PATH:$HOME/bin Step 3: Install MinicondaNext, install Miniconda by executing these commands: curl -LO https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b
eval "$('/root/miniconda3/bin/conda' shell.bash hook)"
conda activate
/root/miniconda3/bin/conda init bash
conda --version Step 4: Create and Activate a Conda EnvironmentCreate a new Conda environment named conda create -n roop python=3.10 cudatoolkit=11.8
conda activate roop Step 5: Clone the RepositoryClone the repository for the program you need to run and navigate into its directory: git clone https://github.com/C0untFloyd/roop-unleashed.git
cd roop-unleashed Step 6: Edit
|
Beta Was this translation helpful? Give feedback.
-
Yeah I am using that, didn't use other runpod instances with other ubuntu versions, The one I am using is |
Beta Was this translation helpful? Give feedback.
Hi,
You need to run the ubuntu:latest template, you can also try with the Ubuntu server 20.04 template
apt update && apt upgrade && apt install nano && apt install git
apt install build-essential && apt install g++-12
apt install nvidia-cuda-toolkit && apt install ffmpeg && export PATH=$PATH:$HOME/bin
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash Miniconda3-latest-Linux-x86_64.sh
Restart the pod.
conda create -n roop python=3.10 cudatoolkit=11.8 && conda activate roop
git clone https://github.com/C0untFloyd/roop-unleashed.git && cd roop-unleashed
-edit the main.py file in the ui folder, at line 78 replace
share=roop.globals.CFG.server_share
withshare=…