安装节点模块“npm install”时出现问题

时间:2021-03-17 02:59:25

标签: javascript npm installation cmd expo

我尝试了一切来解决我的问题,包括不同版本的 node 和 npm install --legacy-peer-deps,但没有解决方案,所以这就是我发布这个的原因。我还安装了 Windows 构建工具,尝试使用管理员凭据并使用纱线安装,但我仍然无法安装模块。

这是我的日志:

import tkinter as tk
from tkinter import *

window = tk.Tk()
window.title("Tkinter FINAL")
window.geometry("600x400")
window.resizable(width=False, height=False)
WIDTH = 800
HEIGHT = 600

counter_name = tk.Label(window, text="Counter Word", width=20)
counter_name.place(x=460,y=318)
counter_entry = tk.Entry(window, width=20)
counter_entry.place(x=470,y=338)

position_x = 0
position_y = 0


word_dict = {}
def button_function():
    word_dict[title] += 1

button_count = 0
def button_maker():
    global position_x, position_y, button_count, title
    button = tk.Button(window, text=counter_entry.get(), width=10, height=2, command = button_function, fg="red")
    button.place(x=position_x,y=position_y)
    position_x += 116
    button_count += 1
    if button_count % 6 == 0:
        position_y += 50
        position_x = 0
    title = counter_entry.get()
    word_dict[title] = 0
    counter_entry.delete(0,'end')




btnmaker = tk.Button(window, text='Click to create counter', width=17, height=2, command = button_maker, fg="red")
btnmaker.place(x=470,y=358)



btnreset = tk.Button(window, text='RESET', width=10, height=2, command = window.destroy, fg="red")
btnreset.place(x=520,y=500)

window.mainloop()

0 个答案:

没有答案