Skip to content

Commit

Permalink
warmup minor change simplify install
Browse files Browse the repository at this point in the history
  • Loading branch information
ryichsecondary committed Nov 30, 2024
1 parent 7a5fe46 commit b09ba62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ First, install following packages
```
apt update
apt install -y curl git python3 python3-pip
pip3 install psutil click
```
Next, clone our respository
Expand Down
6 changes: 4 additions & 2 deletions warmup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
# License: Apache v2.0

import subprocess
import click
import psutil
import sys
import os

Expand Down Expand Up @@ -59,6 +57,8 @@ def list_packages():

def python_packages():
python_packages = [
"click",
"psutil",
"numpy",
"libigl",
"plyfile",
Expand Down Expand Up @@ -170,6 +170,8 @@ def set_time():


def start_jupyter():
import click
import psutil
for process in psutil.process_iter():
if "jupyter" in process.name():
print("Jupyter is already running")
Expand Down

0 comments on commit b09ba62

Please sign in to comment.