Error matplotlib.lines.Line2D object at 0x025B8350 - matplotlib

>>> import pylab as pl
>>> x = np.linspace(0,4*np.pi, 100)
>>> pl.plot(x, np.sin(x))
[<matplotlib.lines.Line2D object at 0x025B8350>]
after install numpy, scipy, sympy, matplotlib, ipython
---------------------------------------------------------------------------
TypeError Python 2.7.3: C:\Python27\python.exe
Fri Sep 28 09:59:01 2012
A problem occured executing Python code. Here is the sequence of function
calls leading up to the error, with the most recent (innermost) call last.
C:\Python27\scripts\ipython.py in <module>()
13
14 [or simply IPython.Shell.IPShell().mainloop(1) ]
15
16 and IPython will be your working environment when you start python. The final
17 sys.exit() call will make python exit transparently when IPython finishes, so
18 you don't have an extra prompt to get out of.
19
20 This is probably useful to developers who manage multiple Python versions and
21 don't want to have correspondingly multiple IPython versions. Note that in
22 this mode, there is no way to pass IPython any command-line options, as those
23 are trapped first by Python itself.
24 """
25
26 import IPython.Shell
27
---> 28 IPython.Shell.start().mainloop()
global IPython.Shell.start.mainloop = undefined
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
C:\Python27\lib\site-packages\IPython\Shell.pyc in start(user_ns=None)
1244
1245 # New versions of pygtk don't need the brittle threaded support.
1246 th_mode = check_gtk(th_mode)
1247 return th_shell[th_mode]
1248
1249
1250 # This is the one which should be called by external code.
1251 def start(user_ns = None):
1252 """Return a running shell instance, dealing with threading options.
1253
1254 This is a factory function which will instantiate the proper IPython shell
1255 based on the user's threading choice. Such a selector is needed because
1256 different GUI toolkits require different thread handling details."""
1257
1258 shell = _select_shell(sys.argv)
-> 1259 return shell(user_ns = user_ns)
1260
1261 # Some aliases for backwards compatibility
1262 IPythonShell = IPShell
1263 IPythonShellEmbed = IPShellEmbed
1264 #************************ End of file <Shell.py> ***************************
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
C:\Python27\lib\site-packages\IPython\Shell.pyc in __init__(self=<IPython.Shell.IPShell instance>, argv=None, user_ns=None, user_global_ns=None, debug=1, shell_class=<class 'IPython.iplib.InteractiveShell'>)
58 # Default timeout for waiting for multithreaded shells (in seconds)
59 GUI_TIMEOUT = 10
60
61 #-----------------------------------------------------------------------------
62 # This class is trivial now, but I want to have it in to publish a clean
63 # interface. Later when the internals are reorganized, code that uses this
64 # shouldn't have to change.
65
66 class IPShell:
67 """Create an IPython instance."""
68
69 def __init__(self,argv=None,user_ns=None,user_global_ns=None,
70 debug=1,shell_class=InteractiveShell):
71 self.IP = make_IPython(argv,user_ns=user_ns,
72 user_global_ns=user_global_ns,
---> 73 debug=debug,shell_class=shell_class)
global For = undefined
global more = undefined
global details = undefined
global see = undefined
global the = undefined
global __call__ = undefined
global method = undefined
global below. = undefined
74
75 def mainloop(self,sys_exit=0,banner=None):
76 self.IP.mainloop(banner)
77 if sys_exit:
78 sys.exit()
79
80 #-----------------------------------------------------------------------------
81 def kill_embedded(self,parameter_s=''):
82 """%kill_embedded : deactivate for good the current embedded IPython.
83
84 This function (after asking for confirmation) sets an internal flag so that
85 an embedded IPython will never activate again. This is useful to
86 permanently disable a shell that is being called inside a loop: once you've
87 figured out what you needed from it, you may then kill it and the program
88 will then continue to run without the interactive shell interfering again.
C:\Python27\lib\site-packages\IPython\ipmaker.pyc in make_IPython(argv=[r'C:\Python27\scripts\ipython.py'], user_ns=None, user_global_ns=None, debug=1, rc_override=None, shell_class=<class 'IPython.iplib.InteractiveShell'>, embedded=False, **kw={})
506 # tweaks. Basically options which affect other options. I guess this
507 # should just be written so that options are fully orthogonal and we
508 # wouldn't worry about this stuff!
509
510 if IP_rc.classic:
511 IP_rc.quick = 1
512 IP_rc.cache_size = 0
513 IP_rc.pprint = 0
514 IP_rc.prompt_in1 = '>>> '
515 IP_rc.prompt_in2 = '... '
516 IP_rc.prompt_out = ''
517 IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'
518 IP_rc.colors = 'NoColor'
519 IP_rc.xmode = 'Plain'
520
--> 521 IP.pre_config_initialization()
522 # configure readline
523
524 # update exception handlers with rc file status
525 otrap.trap_out() # I don't want these messages ever.
526 IP.magic_xmode(IP_rc.xmode)
527 otrap.release_out()
528
529 # activate logging if requested and not reloading a log
530 if IP_rc.logplay:
531 IP.magic_logstart(IP_rc.logplay + ' append')
532 elif IP_rc.logfile:
533 IP.magic_logstart(IP_rc.logfile)
534 elif IP_rc.log:
535 IP.magic_logstart()
536
C:\Python27\lib\site-packages\IPython\iplib.pyc in pre_config_initialization(self=<IPython.iplib.InteractiveShell object>)
820 self.user_ns, # globals
821 # Skip our own frame in searching for locals:
822 sys._getframe(depth+1).f_locals # locals
823 ))
824
825 def pre_config_initialization(self):
826 """Pre-configuration init method
827
828 This is called before the configuration files are processed to
829 prepare the services the config files might need.
830
831 self.rc already has reasonable default values at this point.
832 """
833 rc = self.rc
834 try:
--> 835 self.db = pickleshare.PickleShareDB(rc.ipythondir + "/db")
global Optional = undefined
global inputs = undefined
836 except exceptions.UnicodeDecodeError:
837 print "Your ipythondir can't be decoded to unicode!"
838 print "Please set HOME environment variable to something that"
839 print r"only has ASCII characters, e.g. c:\home"
840 print "Now it is",rc.ipythondir
841 sys.exit()
842 self.shadowhist = IPython.history.ShadowHist(self.db)
843
844 def post_config_initialization(self):
845 """Post configuration init method
846
847 This is called after the configuration files have been processed to
848 'finalize' the initialization."""
849
850 rc = self.rc
C:\Python27\lib\site-packages\IPython\Extensions\pickleshare.pyc in __init__(self=PickleShareDB('C:\Documents and Settings\martinhylee\_ipython\db'), root=u'C:\\Documents and Settings\\martinhylee\\_ipython/db')
38 import cPickle as pickle
39 import UserDict
40 import warnings
41 import glob
42
43 def gethashfile(key):
44 return ("%02x" % abs(hash(key) % 256))[-2:]
45
46 _sentinel = object()
47
48 class PickleShareDB(UserDict.DictMixin):
49 """ The main 'connection' object for PickleShare database """
50 def __init__(self,root):
51 """ Return a db object that will manage the specied directory"""
52 self.root = Path(root).expanduser().abspath()
---> 53 if not self.root.isdir():
54 self.root.makedirs()
55 # cache has { 'key' : (obj, orig_mod_time) }
56 self.cache = {}
57
58
59 def __getitem__(self,key):
60 """ db['key'] reading """
61 fil = self.root / key
62 try:
63 mtime = (fil.stat()[stat.ST_MTIME])
64 except OSError:
65 raise KeyError(key)
66
67 if fil in self.cache and mtime == self.cache[fil][1]:
68 return self.cache[fil][0]
TypeError: _isdir() takes exactly 1 argument (0 given)
**********************************************************************
Oops, IPython crashed. We do our best to make it stable, but...
A crash report was automatically generated with the following information:
- A verbatim copy of the crash traceback.
- A copy of your input history during this session.
- Data on your current IPython configuration.
It was left in the file named:
'C:\Documents and Settings\martinhylee\_ipython\IPython_crash_report.txt'
If you can email this file to the developers, the information in it will help
them in understanding and correcting the problem.
You can mail it to: Fernando Perez at fperez.net#gmail.com
with the subject 'IPython Crash Report'.
If you want to do it now, the following command will work (under Unix):
mail -s 'IPython Crash Report' fperez.net#gmail.com < C:\Documents and Settings\martinhylee\_ipython\IPython_crash_report.txt
To ensure accurate tracking of this issue, please file a report about it at:
https://bugs.launchpad.net/ipython/+filebug
Error in sys.excepthook:
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\IPython\CrashHandler.py", line 157, in __call__
report.write(self.make_report(traceback))
File "C:\Python27\lib\site-packages\IPython\CrashHandler.py", line 215, in make_report
rpt_add('BZR revision : %s \n\n' % Release.revision)
AttributeError: 'module' object has no attribute 'revision'
Original exception was:
Traceback (most recent call last):
File "C:\Python27\scripts\ipython.py", line 28, in <module>
IPython.Shell.start().mainloop()
File "C:\Python27\lib\site-packages\IPython\Shell.py", line 1259, in start
return shell(user_ns = user_ns)
File "C:\Python27\lib\site-packages\IPython\Shell.py", line 73, in __init__
debug=debug,shell_class=shell_class)
File "C:\Python27\lib\site-packages\IPython\ipmaker.py", line 521, in make_IPython
IP.pre_config_initialization()
File "C:\Python27\lib\site-packages\IPython\iplib.py", line 835, in pre_config_initialization
self.db = pickleshare.PickleShareDB(rc.ipythondir + "/db")
File "C:\Python27\lib\site-packages\IPython\Extensions\pickleshare.py", line 53, in __init__
if not self.root.isdir():
TypeError: _isdir() takes exactly 1 argument (0 given)

Try this:
from pylab import *
x = np.linspace(0.4 * np.pi, 100)
plot(x, np.sin(x))
show()

Related

Error in searching genetic database in AlphaFold Colab

When using AlphaFold Colab (https://colab.research.google.com/github/deepmind/alphafold/blob/main/notebooks/AlphaFold.ipynb), I am getting the following error on step 4 ("Search against genetic databases"):
printscreen of error message
KeyError Traceback (most recent call last)
<ipython-input-12-a4ead9510dc9> in <module>
145 for db_name, db_results in raw_msa_results.items():
146 merged_msa = notebook_utils.merge_chunked_msa(
--> 147 results=db_results, max_hits=MAX_HITS.get(db_name))
148 if merged_msa.sequences and db_name != 'uniprot':
149 single_chain_msas.append(merged_msa)
1 frames
/opt/conda/lib/python3.7/site-packages/alphafold/notebooks/notebook_utils.py in merge_chunked_msa(results, max_hits)
105 e_values_dict = parsers.parse_e_values_from_tblout(chunk['tbl'])
106 # Jackhmmer lists sequences as <sequence name>/<residue from>-<residue to>.
--> 107 e_values = [e_values_dict[t.partition('/')[0]] for t in msa.descriptions]
108 chunk_results = zip(
109 msa.sequences, msa.deletion_matrix, msa.descriptions, e_values)
/opt/conda/lib/python3.7/site-packages/alphafold/notebooks/notebook_utils.py in <listcomp>(.0)
105 e_values_dict = parsers.parse_e_values_from_tblout(chunk['tbl'])
106 # Jackhmmer lists sequences as <sequence name>/<residue from>-<residue to>.
--> 107 e_values = [e_values_dict[t.partition('/')[0]] for t in msa.descriptions]
108 chunk_results = zip(
109 msa.sequences, msa.deletion_matrix, msa.descriptions, e_values)
KeyError: '0000|query')
Notably, this error seems to be dependent on the input sequence, because I get it with some sequences but not with others. I am using ColabPro and I have tried to tweak parameters like the amount of computing power but it did not help. I have never experienced this error before switching to ColabPro. Any help would be appreaciated.

Matplotlib for multi-panel of subgraphs

I would like to plot multi-panel graphs using the following data:
CHROM BIN_START BIN_END N_VARIANTS PI
NODE_10_length_497_cov_170.299805 1 10000 39 0.000703581
NODE_13_length_1438_cov_357.659943 1 10000 61 0.00132786
NODE_15_length_733_cov_44.686222 1 10000 25 5.73165e-05
NODE_16_length_8151_cov_58.001228 1 10000 525 0.0129994
NODE_18_length_98839_cov_51.306377 1 10000 753 0.0158054
NODE_18_length_98839_cov_51.306377 10001 20000 644 0.0147527
NODE_18_length_98839_cov_51.306377 20001 30000 783 0.0180735
NODE_18_length_98839_cov_51.306377 30001 40000 433 0.00950069
NODE_18_length_98839_cov_51.306377 40001 50000 568 0.0134851
NODE_18_length_98839_cov_51.306377 50001 60000 634 0.0107662
NODE_18_length_98839_cov_51.306377 60001 70000 501 0.0104874
NODE_18_length_98839_cov_51.306377 70001 80000 736 0.0142129
NODE_18_length_98839_cov_51.306377 80001 90000 803 0.0177756
NODE_18_length_98839_cov_51.306377 90001 100000 683 0.015499
NODE_20_length_219211_cov_54.980137 1 10000 803 0.0188128
NODE_20_length_219211_cov_54.980137 10001 20000 577 0.0152466
NODE_20_length_219211_cov_54.980137 20001 30000 596 0.0149394
NODE_20_length_219211_cov_54.980137 30001 40000 982 0.0230532
NODE_20_length_219211_cov_54.980137 40001 50000 991 0.0211885
NODE_20_length_219211_cov_54.980137 50001 60000 659 0.0154533
NODE_20_length_219211_cov_54.980137 60001 70000 752 0.0171805
NODE_20_length_219211_cov_54.980137 70001 80000 725 0.0168676
NODE_20_length_219211_cov_54.980137 80001 90000 836 0.0199372
NODE_20_length_219211_cov_54.980137 90001 100000 652 0.0116497
NODE_20_length_219211_cov_54.980137 100001 110000 788 0.0176188
NODE_20_length_219211_cov_54.980137 110001 120000 278 0.00549361
NODE_20_length_219211_cov_54.980137 120001 130000 499 0.0120812
NODE_20_length_219211_cov_54.980137 130001 140000 738 0.0161006
NODE_20_length_219211_cov_54.980137 140001 150000 729 0.0148927
NODE_20_length_219211_cov_54.980137 150001 160000 611 0.015047
NODE_20_length_219211_cov_54.980137 160001 170000 737 0.0175226
NODE_20_length_219211_cov_54.980137 170001 180000 709 0.0153575
NODE_20_length_219211_cov_54.980137 180001 190000 688 0.0133387
NODE_20_length_219211_cov_54.980137 190001 200000 693 0.0145321
NODE_20_length_219211_cov_54.980137 200001 210000 564 0.0122298
NODE_20_length_219211_cov_54.980137 210001 220000 687 0.0140385
NODE_22_length_248_cov_293.927429 1 10000 23 0.000482139
NODE_24_length_104_cov_29.778847 1 10000 6 2.73246e-05
NODE_29_length_319744_cov_53.127953 1 10000 759 0.0155234
NODE_29_length_319744_cov_53.127953 10001 20000 741 0.0182896
NODE_29_length_319744_cov_53.127953 20001 30000 709 0.0147025
NODE_29_length_319744_cov_53.127953 30001 40000 755 0.0159811
.
.
.
I have used the following python code.
import matplotlib.pyplot as plt
chrs = {}
with open('diversity_level.windowed.pi', 'r') as f:
info = f.readlines()
for i in range(2, len(info)):#skip the first line
linfo = info[i].split("\t")
if (linfo[0] in chrs):
chrs[linfo[0]][0].append(int(linfo[1]))
chrs[linfo[0]][1].append(float(linfo[4]))
else:
chrs[linfo[0]] = [[] for i in range(2)]
fig, axs = plt.subplots(len(chrs), 1)
fig.subplots_adjust(wspace=50,hspace=0.1)
i = 0
for chr, data in chrs.items():
axs[i].plot(data[0], data[1])
axs[i].set_xlabel(chr)
axs[i].set_ylabel('pi')
axs[i].grid(True)
i = i + 1
plt.show()
The obtained result is
May I know how to adjust the parameter in the code so the the X-axis label of each subgraph can be seen.
How can I select not to output empty subgraphs.
Thanks in advance
To gobffi,
Since all the data is inside the file 'diversity_level.windowed.pi', how can I read the data in the file (without header) and put in the dictionary for plotting the subgraph?
from matplotlib.pyplot import show, subplots
data_dict = {}
with open('diversity_level.windowed.pi', 'r') as f:
data= f.readlines()
for record in range(1,len(data)): #skip the first line header
key, start, pi = record[0], int(record[1]), float(record[4])
start_list, pi_list = data_dict.get(key, [[],[]])
start_list.append(start), pi_list.append(pi)
data_dict[key] = [start_list, pi_list]
for key in list(data_dict.keys()):
if len(data_dict[key][0])==1: data_dict.pop(key)
fig, axs = subplots(len(data_dict), constrained_layout=1,
sharex=True, sharey=True)
for ax, (key, (start_list, pi_list)) in zip(axs, (data_dict.items())):
ax.plot(start_list, pi_list)
ax.set_xlabel(key, size='x-small')
ax.set_ylabel('pi', size='x-small')
ax.tick_params(axis='both', labelsize='x-small')
ax.grid(1);
ax.set_ylim(bottom=0.0)
show()
Here it is my attempt, note that I have reorganized your code a little bit because I was feeling overwhelmed by the amount of indices you used.
To remove the "empty" sequences I loop over the keys, and if the length of a sequence is exactly 1 I remove (that is, pop) the corresponding dictionary entry.
To solve the issue with the cramped plots, usually a good idea is to specify that the figure has to respect constrained_layout (it's a relatively new feature that, imho, was really missing!)
.
from matplotlib.pyplot import show, subplots
# iterate over the lines of a file opened for reading
# each line is a record
data = [record.split() for record in open('your_file_name', 'r')]
data_dict = {}
# we iterate on all the records, except the first one (Python counts from 0)
for record in data[1:]:
# unpack the "interesting" stuff
key, start, pi = record[0], int(record[1]), float(record[4])
# get what is inside the dictionary item, using unpacking
# if item is "new" we get the default value, that is two empty lists
start_list, pi_list = data_dict.get(key, [[],[]])
# append the values to the respective lists
start_list.append(start), pi_list.append(pi)
# update the dictionary item with the augmented lists
data_dict[key] = [start_list, pi_list]
# we remove the "non interesting" entries from the dictionary
# using the `.pop()` method
# note the use of `list(...)` to have a static reference to the keys
for key in list(data_dict.keys()):
if len(data_dict[key][0])==1: data_dict.pop(key)
# instantiate the figure and the axes, using `constrained_layout`
# usually leads to a better arrangement of the figure elements
fig, axs = subplots(len(data_dict), constrained_layout=1)
# except for a moderate abuse of the unpacking syntax,
# everything should be clear …
for ax, (key, (start_list, pi_list)) in zip(axs, (data_dict.items())):
ax.plot(start_list, pi_list)
ax.set_xlabel(key)
ax.set_ylabel('pi')
ax.grid(1);
show()
A twist on the subject, if the data instances must be compared I
prefer to have the same axes (hence sharex and shareyinsubplots`) in each subplot and also, in this particular case, to set
the lower y limit to zero; also, because the figure is rather busy,
here I show you how to reduce the size of the labels and of the tick
labels
...
fig, axs = subplots(len(data_dict), constrained_layout=1,
sharex=True, sharey=True)
for ax, (key, (start_list, pi_list)) in zip(axs, (data_dict.items())):
ax.plot(start_list, pi_list)
ax.set_xlabel(key, size='x-small')
ax.set_ylabel('pi', size='x-small')
ax.tick_params(axis='both', labelsize='x-small')
ax.grid(1);
ax.set_ylim(bottom=0.0)
show()
Since it is an assignment, the following is the picture of the complete data:
the whole code from above, accordingly:
from matplotlib.pyplot import show, subplots
# iterate over the lines of a file opened for reading
# each line is a record
data = [record.split() for record in open('diversity_level.windowed.pi', 'r')]
data_dict = {}
# we iterate on all the records, except the first one (Python counts from 0)
for record in data[1:]:
# unpack the "interesting" stuff
key, start, pi = record[0], int(record[1]), float(record[4])
# get what is inside the dictionary item, using unpacking
# if item is "new" we get the default value, that is two empty lists
start_list, pi_list = data_dict.get(key, [[],[]])
# append the values to the respective lists
start_list.append(start), pi_list.append(pi)
# update the dictionary item with the augmented lists
data_dict[key] = [start_list, pi_list]
# we remove the "non interesting" entries from the dictionary
# using the `.pop()` method
# note the use of `list(...)` to have a static reference to the keys
for key in list(data_dict.keys()):
if len(data_dict[key][0])==1: data_dict.pop(key)
# instantiate the figure and the axes, using `constrained_layout`
# usually leads to a better arrangement of the figure elements
fig, axs = subplots(len(data_dict), constrained_layout=1)
# except for a moderate abuse of the unpacking syntax,
# everything should be clear
for ax, (key, (start_list, pi_list)) in zip(axs, (data_dict.items())):
ax.plot(start_list, pi_list)
ax.set_xlabel(key)
ax.set_ylabel('pi')
ax.grid(1);
ax.set_ylim(bottom=0.0)
show()
2022 assignment info.

How to debug a "IndexError: invalid index to scalar variable" error in Python?

This is my code:
import matplotlib.patches as pat
oval = pat.Ellipse(v1_mean,v2_mean,v1_std*2,v2_std*2)
fig,graph = plt.subplots()
graph.scatter(v1,v2)
graph.scatter(v1_mean,v2_mean, s=100)
graph.text(v1_mean,v2_mean, 'Mean')
graph.add_patch(oval)
And this is the error that comes:
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-40-2278a0e6f4cf> in <module>()
7 graph.scatter(v1_mean,v2_mean, s=100)
8 graph.text(v1_mean,v2_mean, 'Mean')
----> 9 graph.add_patch(oval)
10
11 graph.xlabel('V1')
/opt/conda/lib/python3.6/site-packages/matplotlib/axes/_base.py in add_patch(self, p)
2033 if p.get_clip_path() is None:
2034 p.set_clip_path(self.patch)
-> 2035 self._update_patch_limits(p)
2036 self.patches.append(p)
2037 p._remove_method = lambda h: self.patches.remove(h)
/opt/conda/lib/python3.6/site-packages/matplotlib/axes/_base.py in _update_patch_limits(self, patch)
2053 vertices = patch.get_path().vertices
2054 if vertices.size > 0:
-> 2055 xys = patch.get_patch_transform().transform(vertices)
2056 if patch.get_data_transform() != self.transData:
2057 patch_to_data = (patch.get_data_transform() -
/opt/conda/lib/python3.6/site-packages/matplotlib/patches.py in get_patch_transform(self)
1492
1493 def get_patch_transform(self):
-> 1494 self._recompute_transform()
1495 return self._patch_transform
1496
/opt/conda/lib/python3.6/site-packages/matplotlib/patches.py in _recompute_transform(self)
1476 not directly access the transformation member variable.
1477 """
-> 1478 center = (self.convert_xunits(self.center[0]),
1479 self.convert_yunits(self.center[1]))
1480 width = self.convert_xunits(self.width)
IndexError: invalid index to scalar variable.
Basically, what I am trying to do is plot an oval shape and some data into the same graph. But it seems like the error has got to do with the center of the oval, but I dont know what is exactly wrong. It's strange that I followed exactly what the teacher has done, but mine came with an error while his is ok.
It's strange that I followed exactly what the teacher has done, but mine came with an error while his is ok.
Probably you didn't follow exactly. According to the documentation of matplotlib.patches.Ellipse the xy coordinates of ellipse centre are to be given as a tuple rather than individual arguments, so it's not
oval = pat.Ellipse(v1_mean,v2_mean,v1_std*2,v2_std*2)
but
oval = pat.Ellipse((v1_mean, v2_mean), v1_std*2, v2_std*2)
instead. Unfortunately Ellipse didn't warn about this and stored a single number as the ellipse center.

plumbum : SSH to my remote server

Good day, I am using plumbum on anaconda to connect to my remote server A.
I have create a new user linux2 and assigned a publickey to that user. then changed the permission on the .ssh and authorizedkeys as
chmod 700 /home/linux2/.ssh chmod 600
/home/linux2/.ssh/authorized_keys
When i try the code :
from plumbum import SshMachine
rem=SshMachine("000.000.131.110",user="linux2",Password = "password")
I am getting the below error: Please assist
CommandNotFound Traceback (most recent call
last) in ()
1 # YOUR CODE HERE
2 from plumbum import SshMachine
----> 3 rem=SshMachine("000.000.131.110",user="linux2",password = "password")
C:\ProgramData\Anaconda3\lib\site-packages\plumbum\machines\ssh_machine.py
in init(self, host, user, port, keyfile, ssh_command, scp_command,
ssh_opts, scp_opts, password, encoding, connect_timeout, new_session)
77 if ssh_command is None:
78 if password is not None:
---> 79 ssh_command = local["sshpass"]["-p", password, "ssh"]
80 else:
81 ssh_command = local["ssh"]
C:\ProgramData\Anaconda3\lib\site-packages\plumbum\machines\local.py
in getitem(self, cmd)
206 else:
207 # search for command
--> 208 return LocalCommand(self.which(cmd))
209 else:
210 raise TypeError("cmd must not be a RemotePath: %r" % (cmd,))
C:\ProgramData\Anaconda3\lib\site-packages\plumbum\machines\local.py
in which(cls, progname)
176 if path:
177 return path
--> 178 raise CommandNotFound(progname, list(cls.env.path))
179
180 def path(self, *parts):
CommandNotFound: ('sshpass', [, , , , , , , , , ,
, ,
, , , , ,
,
,
,
,
,
])
Based on your output, you appear to be running this from a Windows machine. According to the plumbum docs, you should use PuttyMachine (requires putty to be installed), or ParamikoMachine for remote ssh connections on Windows.

Gensim saving corpus to S3

I am using gensim, but when I try to save to a s3 location with Mmcorpus.serialize it sends an error:
corpora.MmCorpus.serialize('s3://my_bucket/corpus.mm', corpus)
2016-01-12 15:55:41,957 : INFO : storing corpus in Matrix Market format to s3://my_bucket/corpus.mm
---------------------------------------------------------------------------
NotImplementedError Traceback (most recent call last)
<ipython-input-33-513a98b2dfd4> in <module>()
----> 1 corpora.MmCorpus.serialize('s3://my_bucket/corpus.mm', corpus)
/home/nanounanue/.pyenv/versions/3.4.3/lib/python3.4/site-packages/gensim/corpora/indexedcorpus.py in serialize(serializer, fname, corpus, id2word, index_fname, progress_cnt, labels, metadata)
92 offsets = serializer.save_corpus(fname, corpus, id2word, labels=labels, metadata=metadata)
93 else:
---> 94 offsets = serializer.save_corpus(fname, corpus, id2word, metadata=metadata)
95
96 if offsets is None:
/home/nanounanue/.pyenv/versions/3.4.3/lib/python3.4/site-packages/gensim/corpora/mmcorpus.py in save_corpus(fname, corpus, id2word, progress_cnt, metadata)
47 logger.info("storing corpus in Matrix Market format to %s" % fname)
48 num_terms = len(id2word) if id2word is not None else None
---> 49 return matutils.MmWriter.write_corpus(fname, corpus, num_terms=num_terms, index=True, progress_cnt=progress_cnt, metadata=metadata)
50
51 # endclass MmCorpus
/home/nanounanue/.pyenv/versions/3.4.3/lib/python3.4/site-packages/gensim/matutils.py in write_corpus(fname, corpus, progress_cnt, index, num_terms, metadata)
484 is allowed to be larger than the available RAM.
485 """
--> 486 mw = MmWriter(fname)
487
488 # write empty headers to the file (with enough space to be overwritten later)
/home/nanounanue/.pyenv/versions/3.4.3/lib/python3.4/site-packages/gensim/matutils.py in __init__(self, fname)
434 if fname.endswith(".gz") or fname.endswith('.bz2'):
435 raise NotImplementedError("compressed output not supported with MmWriter")
--> 436 self.fout = utils.smart_open(self.fname, 'wb+') # open for both reading and writing
437 self.headers_written = False
438
/home/nanounanue/.pyenv/versions/3.4.3/lib/python3.4/site-packages/smart_open/smart_open_lib.py in smart_open(uri, mode, **kw)
132 return S3OpenWrite(key, **kw)
133 else:
--> 134 raise NotImplementedError("file mode %s not supported for %r scheme", mode, parsed_uri.scheme)
135
136 elif parsed_uri.scheme in ("hdfs", ):
NotImplementedError: ('file mode %s not supported for %r scheme', 'wb+', 's3')
NOTE: s3://my_bucket exists (with another name), and corpus is the same from the tutorial of gensim.
Which is the correct way of do it? I want to achive the following: store the corpus (or a model, like LDA) in S3 and getting it from S3 and run it again.