Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
| const utils = { | |
| colors: { | |
| red: function(string) { | |
| return '\x1b[31m' + string + '\x1b[0m'; | |
| }, | |
| green: function(string) { | |
| return '\x1b[32m' + string + '\x1b[0m'; | |
| }, |
| # This is an example of how to run MiniDumpWriteDump functionality | |
| # natively in IronPython without a C# wrapper. | |
| from System.Runtime.InteropServices import DllImportAttribute, PreserveSigAttribute | |
| from System.Diagnostics import Process | |
| from System.IO import FileStream, FileMode, FileAccess,FileShare | |
| import clrtype, System | |
| class NativeMethods(object): | |
| __metaclass__ = clrtype.ClrClass |