我对Linux Manjaro中pip2的默认用法有些困惑。
Python2和Python3以及pip(对于python3)都是默认安装的。
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
let contentView = ContentView() //replace this with your view
if let windowScene = scene as? UIWindowScene {
UITableViewCell.appearance().selectionStyle = .none
let window = UIWindow(windowScene: windowScene)
window.rootViewController = UIHostingController(rootView: contentView)
self.window = window
window.makeKeyAndVisible()
}
}
但是pip2失败
$ python --version
Python 3.7.4
$ python2 --version
Python 2.7.16
$ pip --version
pip 19.0.3 from /usr/lib/python3.7/site-packages/pip (python 3.7)
我确定我可以通过pacman安装pip2,但是最初推出python2而又没有依赖pip2版本的初衷是什么?
还是我只是在这里错过了什么?