Skip to content

Commit

Permalink
Fix sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudotensor committed Dec 4, 2024
1 parent 2e830cc commit a0fcc33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/linux_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ npm install -g puppeteer-core
# https://github.com/voxel51/fiftyone/issues/3975
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-7.0.4.tgz
tar xvzf mongodb-linux-x86_64-ubuntu2204-7.0.4.tgz
mkdir -p /usr/lib/python3.10/site-packages/fiftyone/db/
cp -r mongodb-linux-x86_64-ubuntu2204-7.0.4/bin /usr/lib/python3.10/site-packages/fiftyone/db/
chmod -R a+rwx /usr/lib/python3.10/site-packages/fiftyone/db
sudo mkdir -p /usr/lib/python3.10/site-packages/fiftyone/db/
sudo cp -r mongodb-linux-x86_64-ubuntu2204-7.0.4/bin /usr/lib/python3.10/site-packages/fiftyone/db/
sudo chmod -R a+rwx /usr/lib/python3.10/site-packages/fiftyone/db

if [[ -z "${WOLFI_OS}" ]]; then
#
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "7a8e0c5236f6b39949223b70441212930953146e"
__version__ = "2e830cc79a0bb6a7044e0794fec0ba30f4063f0f"

0 comments on commit a0fcc33

Please sign in to comment.