导入matplotlib.pyplot时出现此错误。但我已经检查了使用pip list
安装的六个版本,它返回版本1.9.0。当我检查six.__version__
时,它返回1.2.0。
有人可以帮助我吗?
答案 0 :(得分:0)
通过发出以下命令,检查您是否使用了引用正确Python版本的pip
的正确版本:
pip -V
该命令将显示pip
正在使用的Python版本以及pip
包的路径。
答案 1 :(得分:0)
某处可能存在一个错误,但是快速而肮脏的解决方法如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".NasaDailyImage">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:id="@+id/imageTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_title" />
<TextView
android:id="@+id/imageDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_date" />
<ImageView
android:id="@+id/imageDisplay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/test_image" />
<TextView
android:id="@+id/imageDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_description" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/refresh" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
答案 2 :(得分:0)
我遇到了同样的事情,原因是在我的PYTHONPATH目录中遗留了六个.pyo / six.pyc而不是已安装的版本。