LoginSignup
2
0

More than 3 years have passed since last update.

macOS Mojaveでpip installしたときに'ios' file not foundエラーが出る

Last updated at Posted at 2019-07-03

CFLAGS='-stdlib=libc++'を先頭につけてpip installすれば良い。

# before
pip install pyworld

# after
CFLAGS='-stdlib=libc++' pip install pyworld

追記: ld: library not found for -lstdc++というエラーが出たときもとりあえずこれで解決できた。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0