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)" |
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) |