質問編集履歴
4
タグの追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
3
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -92,7 +92,7 @@
|
|
92
92
|
|
93
93
|
import pyperclipの次の行に
|
94
94
|
|
95
|
-
pyperclip.path.append('C:\Users\hashi\AppData\Local\Programs\Python\Python36-32\Lib\site-packages\pyperclip')
|
95
|
+
pyperclip.path.append(r'C:\Users\hashi\AppData\Local\Programs\Python\Python36-32\Lib\site-packages\pyperclip')
|
96
96
|
|
97
97
|
を加えてみて実行しましたが、別のエラーが発生しました。
|
98
98
|
|
2
py.exeとpython.exeの画面を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -139,3 +139,45 @@
|
|
139
139
|
> @py.exe C:\MyPythonScripts\pw.py %*
|
140
140
|
|
141
141
|
> @pause
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
追記:「C:¥Windows¥py.exe」を開くと画面に下記のように冒頭の2行が出力されます。
|
146
|
+
|
147
|
+
その後import pyperclip を使用するとエラーが発生します。
|
148
|
+
|
149
|
+
```
|
150
|
+
|
151
|
+
Python 3.6.3 |Anaconda, Inc.| (default, Oct 15 2017, 03:27:45) [MSC v.1900 64 bit (AMD64)] on win32
|
152
|
+
|
153
|
+
Type "help", "copyright", "credits" or "license" for more information.
|
154
|
+
|
155
|
+
>>> import pyperclip
|
156
|
+
|
157
|
+
Traceback (most recent call last):
|
158
|
+
|
159
|
+
File "<stdin>", line 1, in <module>
|
160
|
+
|
161
|
+
ModuleNotFoundError: No module named 'pyperclip'
|
162
|
+
|
163
|
+
```
|
164
|
+
|
165
|
+
「C:\Users\hashi\AppData\Local\Programs\Python\Python36-32\python.exe」を開くと画面に下記のように冒頭の2行が出力されます。
|
166
|
+
|
167
|
+
その後import pyperclip を使用できます。
|
168
|
+
|
169
|
+
```
|
170
|
+
|
171
|
+
Python 3.6.3 (v3.6.3:2c5fed8, Oct 3 2017, 17:26:49) [MSC v.1900 32 bit (Intel)] on win32
|
172
|
+
|
173
|
+
Type "help", "copyright", "credits" or "license" for more information.
|
174
|
+
|
175
|
+
>>> import pyperclip
|
176
|
+
|
177
|
+
>>> pyperclip.copy('apple')
|
178
|
+
|
179
|
+
>>> pyperclip.paste()
|
180
|
+
|
181
|
+
'apple'
|
182
|
+
|
183
|
+
```
|
1
バッチファイルの内容
test
CHANGED
File without changes
|
test
CHANGED
@@ -129,3 +129,13 @@
|
|
129
129
|
どのように解消すれば良いでしょうか。
|
130
130
|
|
131
131
|
プログラミング初心者です。ご解答宜しくお願いします。
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
追記:バッチファイルは「pw.bat」というファイル名で「C:\MyPythonScripts」に保存しています。
|
136
|
+
|
137
|
+
バッチファイルの全文は以下の通りです。
|
138
|
+
|
139
|
+
> @py.exe C:\MyPythonScripts\pw.py %*
|
140
|
+
|
141
|
+
> @pause
|