If you see this error when trying to import pandas under osx 10.14 Mojave
ModuleNotFoundError: No module named '_lzma'
You may be missing the xz
libraries (https://tukaani.org/xz/)
This may be corrected by using homebrew to install it.
import UIKit | |
class UIStoryboardSegueFromRight: UIStoryboardSegue { | |
override func perform() | |
{ | |
let src = self.sourceViewController as UIViewController | |
let dst = self.destinationViewController as UIViewController | |
src.view.superview?.insertSubview(dst.view, aboveSubview: src.view) |
If you see this error when trying to import pandas under osx 10.14 Mojave
ModuleNotFoundError: No module named '_lzma'
You may be missing the xz
libraries (https://tukaani.org/xz/)
This may be corrected by using homebrew to install it.
#!/bin/bash | |
# Brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
# NVM | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
# oh my ZSH | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |