質問編集履歴
1
新たな方法を試していみました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,3 +5,49 @@
|
|
5
5
|
ModuleNotFoundError: No module named 'unidecode'
|
6
6
|
|
7
7
|
以上について解決方法を教えていただけるとありがたいです。よろしくお願いします。
|
8
|
+
|
9
|
+
追記(こういう書き方でいいのでしょうか?)
|
10
|
+
ご回答者様には御礼申し上げます。私が全くの素人のままでやりはじめたというのもあるのですが、動画の通り何度やってもできないので、以下のサイトを参考にしてやってみました。以前のMMVCの動画の作成者と同じ方のようです。
|
11
|
+
https://note.com/pipo_lll/m/m9c0711b0da79 このシリーズで再度やり直してみました。
|
12
|
+
https://note.com/pipo_lll/n/n3e41c02608aa?magazine_key=m9c0711b0da79
|
13
|
+
この構築編は問題ありませんでした。こまではできています。
|
14
|
+
次の
|
15
|
+
https://note.com/pipo_lll/n/nebe780394098?magazine_key=m9c0711b0da79
|
16
|
+
の02_Rec_Voice.ipynb:3 録音の準備 で、また以下のようなエラーが出ました。
|
17
|
+
ModuleNotFoundError Traceback (most recent call last)
|
18
|
+
<ipython-input-6-f837f00c7841> in <cell line: 0>()
|
19
|
+
52 import matplotlib.pyplot as plt
|
20
|
+
53 get_ipython().system('pip install pysndfile')
|
21
|
+
---> 54 import pysndfile
|
22
|
+
55 from IPython.display import display, Audio
|
23
|
+
56 import warnings
|
24
|
+
|
25
|
+
ModuleNotFoundError: No module named 'pysndfile'
|
26
|
+
|
27
|
+
---------------------------------------------------------------------------
|
28
|
+
NOTE: If your import is failing due to a missing package, you can
|
29
|
+
manually install dependencies using either !pip or !apt.
|
30
|
+
|
31
|
+
To view examples of installing some common dependencies, click the
|
32
|
+
"Open Examples" button below.
|
33
|
+
---------------------------------------------------------------------------
|
34
|
+
Collecting pysndfile
|
35
|
+
Downloading pysndfile-1.4.7.tar.gz (48 kB)
|
36
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.4/48.4 kB 1.8 MB/s eta 0:00:00
|
37
|
+
Installing build dependencies ... done
|
38
|
+
error: subprocess-exited-with-error
|
39
|
+
|
40
|
+
× Getting requirements to build wheel did not run successfully.
|
41
|
+
│ exit code: 1
|
42
|
+
╰─> See above for output.
|
43
|
+
|
44
|
+
note: This error originates from a subprocess, and is likely not a problem with pip.
|
45
|
+
Getting requirements to build wheel ... error
|
46
|
+
error: subprocess-exited-with-error
|
47
|
+
|
48
|
+
× Getting requirements to build wheel did not run successfully.
|
49
|
+
│ exit code: 1
|
50
|
+
╰─> See above for output.
|
51
|
+
|
52
|
+
note: This error originates from a subprocess, and is likely not a problem with pip.
|
53
|
+
何度もすいません、、、また似たようなエラーが返ってきます。。。ご教示いただけると幸いです。。機械に嫌われまくってますね、、こうプログラムの才能がないのは明白なので、ご教示いただけると幸いです。よろしくお願いいたします。
|