Qbot icon indicating copy to clipboard operation
Qbot copied to clipboard

MacOS 14.1.1 (23B81) 安装遇到的几个问题,目前已成功启动

Open simonjoee opened this issue 1 year ago • 3 comments

  1. 运行时提示 Library not loaded: @rpath/libfreetype.6.dylib

解决方案:conda install freetype

  1. 运行时提示 ModuleNotFoundError: No module named 'wx'

解决方案:pip install wxpython

  1. 安装 tables 报错 ERROR:: Could not find a local HDF5 installation.

解决方案:

brew install pkg-config
brew install hdf5

export HDF5_DIR=/opt/homebrew/Cellar/hdf5
pip install -r requirements.txt

simonjoee avatar Nov 21 '23 09:11 simonjoee

牛的~!

ddviper avatar Nov 22 '23 15:11 ddviper

MacBookPro M2的无法安装hdf5 使用如下命令解决xcode-select install brew install hdf5 brew install c-blosc export HDF5_DIR=/opt/homebrew/opt/hdf5 export BLOSC_DIR=/opt/homebrew/opt/c-blosc

brew install sdl2 brew install pkg-config export PKG_CONFIG_PATH=/opt/homebrew/opt/freetype/lib/pkgconfig:$PKG_CONFIG_PATH

brew install freetype export INCLUDEPATH=/opt/homebrew/Cellar/freetype/2.13.2/include:$INCLUDEPATH

misterluck avatar Apr 30 '24 13:04 misterluck

  Package freetype2 was not found in the pkg-config search path.
  Perhaps you should add the directory containing `freetype2.pc'
  to the PKG_CONFIG_PATH environment variable
  No package 'freetype2' found

brew install freetype export INCLUDEPATH=/opt/homebrew/Cellar/freetype/2.13.2/include:$INCLUDEPATH

misterluck avatar May 07 '24 05:05 misterluck