-2

my python version is 2.7.14 in windows 7

I have import simplejson with command "pip install simplejson"

my code is

import os
import platform
import re
import subprocess
import sys
import threading
import simplejson

error messge is

ImportError: No module named simplejson

how can i fix this ?

2 Answers2

0
  1. Download it from here - simplejson 3.12.0
  2. Install
  3. Enjoy
Sukharkov
  • 1
  • 1
  • 4
0

If you have Python and pip in your PATH just run the following command in your console.

$ pip install simplejson 

The console will return the following output

Collecting simplejson
Downloading simplejson-3.13.2-cp27-cp27m-win32.whl (68kB)
Installing collected packages: simplejson
Successfully installed simplejson-3.13.2