Skip to content

Commit

Permalink
edited readme and install-dev.sh (#117)
Browse files Browse the repository at this point in the history
* edited readme and install

* corrected

* Update install-dev.sh

Co-authored-by: c3b5aw <pro@c3b5aw.dev>

* Update install-dev.sh

Co-authored-by: c3b5aw <pro@c3b5aw.dev>

---------

Co-authored-by: c3b5aw <pro@c3b5aw.dev>
  • Loading branch information
thebigbone and c3b5aw authored Apr 24, 2023
1 parent 0a0b1fd commit 3478723
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Clone the repository and run the installation script

```bash
git clone https://github.com/Escape-Technologies/graphinder.git
cd Graphinder
cd graphinder
./install-dev.sh
```

Expand Down
12 changes: 12 additions & 0 deletions install-dev.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
#!/bin/sh

# Check if pip is installed, and install it if necessary
echo "---- Updating pip ----"
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
echo "---- Pip updated ----"
rm get-pip.py
if ! pip --version > /dev/null 2>&1; then
echo "Installing pip..."
curl -sSL https://bootstrap.pypa.io/get-pip.py | python
fi
echo "---- Installing Python Poetry ----"
echo "---- Updating pip ----"
pip install -U pip
pip install -U poetry
poetry config virtualenvs.in-project true
Expand Down

0 comments on commit 3478723

Please sign in to comment.