Skip to content

Commit

Permalink
fixed dependency problems and conda azure lib load support
Browse files Browse the repository at this point in the history
  • Loading branch information
cansik committed Jun 21, 2023
1 parent 27a03b3 commit 621a520
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ configargparse
pyopengl

# visiongraph
visiongraph[realsense, azure, mediapipe, numba, onnx, media]>=0.1.30.4
visiongraph[realsense, azure, mediapipe, numba, onnx, media]==0.1.30.4
protobuf<=3.20.1
numpy<=1.22.4

# gui related
open3d<=0.15.2
duit[all]>=0.1.2.1
duit[all]==0.1.2.1

# macos
syphonpy; platform_system == "Darwin"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def finalize_options(self) -> None:

setup(
name=NAME,
version='0.1.6',
version='0.1.6.1',
packages=required_packages,
entry_points={
'console_scripts': [
Expand Down
5 changes: 5 additions & 0 deletions spacestream/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# fix conda load dll problem
import os

os.environ["CONDA_DLL_SEARCH_MODIFICATION_ENABLE"] = "1"

import logging
from functools import partial

Expand Down

0 comments on commit 621a520

Please sign in to comment.