Search code examples
pythonjsonpickle

How to install jsonpickle in Linux?


I'm now attempting to program in python on Linux. I am using Linux Mint 15 "Olivia" with Cinnamon desktop. I'm also using python 3.3 now. Being new to Linux, I am unable to find anything regarding getting jsonpickle to work. If someone would be kind enough to post instructions for installing jsonpickle in Linux, that would be much appreciated!


Solution

  • You just can use pip or easy_install:

    pip install jsonpickle
    easy_install jsonpickle
    

    Or the standard method of your distributive (apt-get install and so on) if the package is avaiable in the repository.